
com.mytechia.robobo.rob.RobMotorEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of robobo-rob-interface Show documentation
Show all versions of robobo-rob-interface Show documentation
Control library and protocol for the Robobo-ROB robotic platform.
The newest version!
package com.mytechia.robobo.rob;
/**
* Used to select motors in the encoder reset message
*/
public enum RobMotorEnum {
ALL_MOTOR((byte) 2),LEFT_MOTOR((byte) 1),RIGHT_MOTOR((byte) 2);
RobMotorEnum(byte code) {
this.code = code;
}
public final byte code;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy