mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-20 21:01:25 +03:00
Converted Robot_Control files to unix format for better git diffs
This commit is contained in:
@ -1 +1,29 @@
|
||||
#include <ArduinoRobot.h>
|
||||
#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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user