Ejemplo n.º 1
0
void xlMotor::lock(void){
	Dxl.writeByte(myID, 47, 1);
}
Ejemplo n.º 2
0
void xlMotor::unlock(void){
	Dxl.writeByte(myID, 47, 0);
}
Ejemplo n.º 3
0
void xlMotor::ledOn(void){
	Dxl.writeByte(myID, 25, 1);
}
Ejemplo n.º 4
0
void xlMotor::ledOff(void){
	Dxl.writeByte(myID, 25, 0);
}
Ejemplo n.º 5
0
void xlMotor::setHighVoltage(int newVolt){
	Dxl.writeByte(myID, 14, newVolt);
}
Ejemplo n.º 6
0
void xlMotor::setStatusReturn(int newStat){
	Dxl.writeByte(myID, 17, newStat);
}
Ejemplo n.º 7
0
void xlMotor::setTempLimit(int newTemp){
	Dxl.writeByte(myID, 12, newTemp);
}
Ejemplo n.º 8
0
void xlMotor::setLowVoltage(int newVolt){
	Dxl.writeByte(myID, 13, newVolt);
}
Ejemplo n.º 9
0
void xlMotor::setBaud(int newBaud){
	Dxl.writeByte(myID, 4, newBaud);
}
Ejemplo n.º 10
0
void xlMotor::setReturnDelay(int newDelay){
	Dxl.writeByte(myID, 5, newDelay);
}
Ejemplo n.º 11
0
void xlMotor::setID(int newID){
	Dxl.writeByte(BROADCAST_ID, 3, newID);
}
Ejemplo n.º 12
0
void axMotor::setHighVoltage(int newVolt){
	Dxl.writeByte(myID, 13, newVolt);
}
Ejemplo n.º 13
0
void axMotor::setLowVoltage(int newVolt){
	Dxl.writeByte(myID, 12, newVolt);
}
Ejemplo n.º 14
0
void axMotor::setTempLimit(int newTemp){
	Dxl.writeByte(myID, 11, newTemp);
}
Ejemplo n.º 15
0
void axMotor::setID(int newID){
	Dxl.writeByte(myID, 3, newID);
}