EOS 2  1.1.0
Einfache Objektbasierte Sprache
DeviceType.java
gehe zur Dokumentation dieser Datei
1 package de.lathanda.eos.ev3.bytecode;
2 
3 public interface DeviceType {
4  byte UNKNOWN = (byte)0x01;
5  byte NXT_TOUCH = (byte)0x01;
6  byte NXT_LIGHT = (byte)0x02;
7  byte NXT_SOUND = (byte)0x03;
8  byte NXT_COLOR = (byte)0x04;
9  byte NXT_ULTRASONIC = (byte)0x05;
10  byte NXT_TEMPERATURE = (byte)0x06;
11  byte L_MOTOR = (byte)0x07;
12  byte M_MOTOR = (byte)0x08;
13  byte TOUCH = (byte)0x10;
14  byte TEST = (byte)0x15;
15  byte I2C = (byte)0x64;
16  byte NXT_TEST = (byte)0x65;
17  byte COLOR = (byte)0x1D;
18  byte ULTRASONIC = (byte)0x1E;
19  byte GYRO = (byte)0x20;
20  byte IR = (byte)0x21;
21  byte NONE = (byte)0x7E;
22 }
Impressum