From 8a7747ca138ac72e2af033b60d8ac5b157996c9d Mon Sep 17 00:00:00 2001 From: "ishak jmilou.ishak" Date: Tue, 8 Oct 2024 13:24:04 +0200 Subject: [PATCH] fixed text input --- src/C++/Driver/src/test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/C++/Driver/src/test.cpp b/src/C++/Driver/src/test.cpp index 40f1292..ed16512 100644 --- a/src/C++/Driver/src/test.cpp +++ b/src/C++/Driver/src/test.cpp @@ -8,8 +8,8 @@ using namespace std; CKobuki robot; int command(); -const std::string FORWARD = "forward"; -const std::string ROTATE = "rotate"; +const char FORWARD = '1'; +const char ROTATE = '2'; int main() { unsigned char *null_ptr(0); @@ -38,7 +38,7 @@ int command() { char input; while (true) { - std::cout << "choose between forward or rotate" << endl; + std::cout << "choose between forward = 1 or rotate = 2" << endl; std::cout << "What must the robot do?"; std::cin >> input;