-
Notifications
You must be signed in to change notification settings - Fork 238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adjusting Wheel Size on Turtlebot3 Burger #225
Comments
Hi, @esch98 You should modify the "VELOCITY_CONSTANT_VALUE" and other parameters that Thank you. |
@esch98 You might also want to update the URDF as there will be some changes in z axis. |
This issue will be closed since there were no actions for a while. You can reopen this issue to show this issue to the users whenever. Thanks. |
Am I undersranding this correctly that this .h file is part of the arduino source, so I have to instlal the arduino IDE, rebuild the opencr software there, and then load it onto the opencr? Are there consolidated instructions for this anywhere? |
@pitosalas
I have changed these values and written them in the Arduino IDE and have confirmed that the speed of the wheel changes. Try this series of methods. |
Thank you! I thought that CIRCUMFERANCE was the shape of the robot itself!
Weird that I have to enter CIRCUMFERANCE given that it’s so easy to compute.
Thank you!
Pito Salas
Faculty, Computer Science
Brandeis University
… On Apr 6, 2022, at 5:36 AM, toukairinn9999 ***@***.***> wrote:
@pitosalas
That understanding is correct.
The steps required by OpenCR when changing wheel size or distance between wheels can be summarized as follows
• change WHEEL_RADIUS, WHEEL_SEPARATION and TURNING_RADIUS in turtlebot3_burger.h
• Change the circumference of the wheel in turtlebot3_core.ino. Here, the circumference can be calculated by 2Pi * WHEEl_RADIUS.
The default value of the circumference of burger is 0.207.
• Install Arduino IDE on your PC and write the edited file (turtlebot3_core.ino). Please refer to the following e-Manual for this detail.
https://emanual.robotis.com/docs/en/platform/turtlebot3/opencr_setup/#opencr-setup
3.3. At the end of OpenCR Setup, there are instructions for using the Arduino IDE, click to expand and see the details.
I have changed these values and written them in the Arduino IDE and have confirmed that the speed of the wheel changes. Try this series of methods.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you were mentioned.
|
Hello @toukairinn9999 , |
I am new to ROS and OpenCR. I am working with a Turtlebot3 Burger and want to increase the size of the wheels for better ground clearance. I took a look at modifications that would need to be made to the OpneCR source so that the new wheels don't throw off the robot's pose estimation.
I found the WHEEL_RADIUS definition in turtlebot3_burger.h, which seems to be the correct setting to modify. However, looking through turtlebot3_core.ino, I also found a reference to the wheel circumference (listed as 0.207) that was simply entered as a number and did not reference the WHEEL_RADIUS (or any other) definition. These were the only two instances I was able to find that mentioned the wheel radius, but I was wondering if there are other settings that should be changed with a new wheel set.
The text was updated successfully, but these errors were encountered: