Android Open Source - HouseBot_Android Command






From Project

Back to project page HouseBot_Android.

License

The source code is released under:

MIT License

If you think the Android project HouseBot_Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.lofland.housebot;
/*from  w w w.j av a  2s  . c  om*/
// From package lejos.android;

/**
 * Use this enum in both the RCNavigationControl program on the PC and the
 * RCNavigator that runs on the NXT
 * 
 * @author Roger Glassey
 */
public enum Command {
  /*
   * NOTE: You must have the SAME number of ENUMS here in the SAME ORDER as in
   * the program on the robot!
   */
  EMPTY, STATUS, PROCEED, FORWARD, LEFT, RIGHT, BACKWARD, STOP, BEHAVE, PING, TEST, VIEWANGLE, STAYCLOSE, RESET, FINDCLEARRIGHT, FINDCLEARLEFT, ROTATETOA, ROTATETOC, CALIBRATE;
  // commands to be transmitted to the NXT
}




Java Source Code List

com.lofland.housebot.AndroidCommand.java
com.lofland.housebot.BotController.java
com.lofland.housebot.CommandType.java
com.lofland.housebot.Command.java
com.lofland.housebot.Direction.java
com.lofland.housebot.NanoHTTPD.java
com.lofland.housebot.Robot.java
com.lofland.housebot.WebServer.java
lejos.pc.comm.NXTCommAndroid.java