mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-29 10:24:12 +01:00
1 line
695 B
C++
1 line
695 B
C++
#include <ArduinoRobot.h>
|
|
|
|
bool RobotControl::isActionDone(){
|
|
if(messageIn.receiveData()){
|
|
if(messageIn.readByte()==COMMAND_ACTION_DONE){
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void RobotControl::pauseMode(uint8_t onOff){
|
|
messageOut.writeByte(COMMAND_PAUSE_MODE);
|
|
if(onOff){
|
|
messageOut.writeByte(true);
|
|
}else{
|
|
messageOut.writeByte(false);
|
|
}
|
|
messageOut.sendData();
|
|
}
|
|
|
|
void RobotControl::lineFollowConfig(uint8_t KP, uint8_t KD, uint8_t robotSpeed, uint8_t intergrationTime){
|
|
messageOut.writeByte(COMMAND_LINE_FOLLOW_CONFIG);
|
|
messageOut.writeByte(KP);
|
|
messageOut.writeByte(KD);
|
|
messageOut.writeByte(robotSpeed);
|
|
messageOut.writeByte(intergrationTime);
|
|
messageOut.sendData();
|
|
}
|