Changeset 42379ae in orbit
- Timestamp:
- 12/13/12 01:38:58 (10 years ago)
- Branches:
- master, RawEEG, Raw_EEG_Plot, Servo, Tab_Interface, pyramid
- Children:
- 85e0208
- Parents:
- 33cfd5c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
android/src/info/puzzlebox/orbit/SerialDevice.java
r1a53973 r42379ae 44 44 while (keep_running) { 45 45 46 if (command == "neutral") {46 if (command.equals("neutral")) { 47 47 setting = commandNeutral; 48 } else if (command == "idle") {48 } else if (command.equals("idle")) { 49 49 setting = commandIdle; 50 } else if (command == "hover") {50 } else if (command.equals("hover")) { 51 51 setting = commandHover; 52 } else if (command == "maximum_thrust") {52 } else if (command.equals("maximum_thrust")) { 53 53 setting = commandMaximumThrust; 54 54 }
Note: See TracChangeset
for help on using the changeset viewer.