32 std::vector<bool> buttons;
36 const int nJoystick = 0;
38 printf(
"Press any key to stop program...\n");
45 double t = tictac.
Tac();
47 printf(
"Joystick readings: %.03f, %.03f, %.03f (", x, y, z);
48 for (
unsigned b = 0; b < buttons.size(); b++)
49 printf(
"B%u:%c ", b, buttons[b] ?
'X' :
'-');
50 printf(
") [Query %uus] \r", (
unsigned)(t * 1e6));
57 "Error reading from joystick, please connect one to the " 61 std::this_thread::sleep_for(20ms);
73 catch (
const std::exception& e)
double Tac() noexcept
Stops the stopwatch.
A high-performance stopwatch, with typical resolution of nanoseconds.
Contains classes for various device interfaces.
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
bool getJoystickPosition(int nJoy, float &x, float &y, float &z, std::vector< bool > &buttons, int *raw_x_pos=nullptr, int *raw_y_pos=nullptr, int *raw_z_pos=nullptr)
Gets joystick information.
bool kbhit() noexcept
An OS-independent version of kbhit, which returns true if a key has been pushed.
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
void Tic() noexcept
Starts the stopwatch.
Access to joysticks and gamepads (read buttons and position), and request number of joysticks in the ...