added some std

This commit is contained in:
ishak jmilou.ishak
2024-10-08 12:53:42 +02:00
parent dcd28e3587
commit 618ad37cff

View File

@@ -15,6 +15,7 @@ int main() {
unsigned char *null_ptr(0); unsigned char *null_ptr(0);
robot.startCommunication("/dev/ttyUSB0", true, null_ptr); robot.startCommunication("/dev/ttyUSB0", true, null_ptr);
usleep(1 * 1000 * 1000); usleep(1 * 1000 * 1000);
std::cout << "choose between forward and rotate" << endl;
thread mv(command); thread mv(command);
usleep(30 * 1000 * 1000); usleep(30 * 1000 * 1000);
mv.join(); // only exit once thread one is done running mv.join(); // only exit once thread one is done running
@@ -22,29 +23,26 @@ int main() {
int checkCenterCliff() { int checkCenterCliff() {
while (true) { while (true) {
std::cout << "cliffsensordata:" << robot.parser.data.CliffSensorCenter std::cout << "cliffsensordata:" << robot.parser.data.CliffSensorCenter << std::endl;
<< std::endl;
} }
} }
int checkWheelDrop() { int checkWheelDrop() {
while (true) { while (true) {
std::cout << "wheeldropdata:" << robot.parser.data.WheelDropLeft std::cout << "wheeldropdata:" << robot.parser.data.WheelDropLeft << std::endl;
<< std::endl;
} }
} }
int command() { int command() {
char input; char input;
std::cout << "choose between forward and rotate" << endl;
std::cout << "What must the robot do?"; std::cout << "What must the robot do?";
cin >> input; std::cin >> input;
switch (input) { switch (input) {
case FORWARD: { case FORWARD: {
int distance; int distance;
std::cout << "Enter distance to move forward: "; std::cout << "Enter distance to move forward: ";
cin >> distance; std::cin >> distance;
robot.goStraight(distance); robot.goStraight(distance);
} break; } break;
@@ -53,8 +51,6 @@ int command() {
std::cout << "Enter angle to rotate: "; std::cout << "Enter angle to rotate: ";
std::cin >> angle; std::cin >> angle;
robot.doRotation(angle); robot.doRotation(angle);
robot.goStraight(-1);
} break; } break;
default: default: