Skip to content

Commit

Permalink
Update throttle and steering rates in SteamJoyNodeConfig and remote_s…
Browse files Browse the repository at this point in the history
…teamcontroller.cpp
  • Loading branch information
dylanzemlin committed Apr 12, 2024
1 parent 1b4d387 commit f728017
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autonav_ws/src/autonav_manual/src/remote_steamcontroller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ class SteamJoyNode : public SCR::Node
defaultConfig.throttle_deadzone = 0.15f;
defaultConfig.steering_deadzone = 0.15f;
defaultConfig.forward_speed = 1.8f;
defaultConfig.turn_speed = 1.0f;
defaultConfig.turn_speed = 1.3f;
defaultConfig.max_turn_speed = 3.14159265f;
defaultConfig.max_forward_speed = 2.2f;
defaultConfig.invert_steering = true;
defaultConfig.invert_throttle = true;
defaultConfig.throttle_rate = 0.01f;
defaultConfig.steering_rate = 0.01f;
defaultConfig.steering_rate = 0.02f;
return defaultConfig;
}

Expand Down

0 comments on commit f728017

Please sign in to comment.