embedded:adventures:driving
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
embedded:adventures:driving [2016/08/31 18:16] – pvela | embedded:adventures:driving [2024/08/20 21:38] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 3: | Line 3: | ||
Once basic actuation of the motors is possible, the typical next step is to create an interface that abstracts the basic functionality so that you can focus on the use of the motors and not on the low-level parts of commanding them. | Once basic actuation of the motors is possible, the typical next step is to create an interface that abstracts the basic functionality so that you can focus on the use of the motors and not on the low-level parts of commanding them. | ||
- | Since you've already figured out how to program things so that the motors move, either via [[embedded: | + | Since you've already figured out how to program things so that the motors move, either via [[embedded: |
+ | |||
+ | |||
+ | |||
+ | ===== Tank-Style Robots ===== | ||
+ | |||
+ | Tank-style robots, also known as Hilare or wheelchair robots, are the most common type of wheeled robot, due to their operational simplicity. | ||
The basic drive class is defined to have minimal functionality: | The basic drive class is defined to have minimal functionality: | ||
Line 11: | Line 17: | ||
- driveRight(val) | - driveRight(val) | ||
- stop | - stop | ||
- | |||
- | |||
- | ===== Tank-Style Robots ===== | ||
==== RC Servo Control ==== | ==== RC Servo Control ==== | ||
Line 19: | Line 22: | ||
The sabertooth is a motor controller that takes RC Servo commands and convertes them to a pulse width modulated voltage signal to the motors. | The sabertooth is a motor controller that takes RC Servo commands and convertes them to a pulse width modulated voltage signal to the motors. | ||
- | Since only RC servo PWM is output, there is a need for one pin per motor to drive. | + | Since only RC servo PWM is output, there is a need for one pin per motor to drive. |
==== H-Bridge Control ==== | ==== H-Bridge Control ==== | ||
- | Interfacing an H-Bridge is a bit different since both the direction bit and the actual (variable) duty cycle signal need to be provided, per motor. The constructor should specify these four pins. The rest should be the same. | + | Interfacing an H-Bridge is a bit different since both the direction bit and the actual (variable) duty cycle signal need to be provided, per motor. The constructor should specify these four pins. The rest should be the same. Call this class **tankBridge**. |
+ | ------------------- | ||
+ | ;#; | ||
+ | [[: | Main]] -- [[basics: | ||
+ | ;#; |
embedded/adventures/driving.1472681786.txt.gz · Last modified: 2024/08/20 21:38 (external edit)