You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am modifying the sketch for Turtlebot3-waffle to use four wheels. While working on it, I noticed that the RC-100 only recognizes the joystick intermittently. I found a workaround but couldn't find the cause, so I created this issue.
In my case, running rc100_.available() before the availability check solves the RC-100's responsiveness problem, like the following code snippet:
void Turtlebot3Controller::getRCdata(float *get_cmd_vel)
{
...
rc100_.available(); // Warm up
if (rc100_.available())
{
received_data = rc100_.readData();
The text was updated successfully, but these errors were encountered:
I am modifying the sketch for Turtlebot3-waffle to use four wheels. While working on it, I noticed that the RC-100 only recognizes the joystick intermittently. I found a workaround but couldn't find the cause, so I created this issue.
In my case, running
rc100_.available()
before the availability check solves the RC-100's responsiveness problem, like the following code snippet:The text was updated successfully, but these errors were encountered: