MCPcopy Create free account
hub / github.com/ROBOTIS-GIT/turtlebot3 / add_wheels

Method add_wheels

turtlebot3_node/src/turtlebot3.cpp:131–140  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

129}
130
131void TurtleBot3::add_wheels()
132{
133 RCLCPP_INFO(this->get_logger(), "Add Wheels");
134
135 this->declare_parameter<float>("wheels.separation");
136 this->declare_parameter<float>("wheels.radius");
137
138 this->get_parameter_or<float>("wheels.separation", wheels_.separation, 0.160);
139 this->get_parameter_or<float>("wheels.radius", wheels_.radius, 0.033);
140}
141
142void TurtleBot3::add_sensors()
143{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected