I’m trying to utilize std::cin / scanf() to aid with building my autonomous, when I try to enter a value into the console, it does not accept any inputs, while being plugged directly into the controller or brain.
- This is also the case for python, where it doesn’t recognize input().
Are there any plans to add this feature?
Heres an “implementation” of what I’m trying to achieve:
int main() {
double number;
std::cout << "Pick a Number: ";
std::cin >> number;
printf(“Your Number: %f”, number);
}