embedded:adventures:rcservo
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
embedded:adventures:rcservo [2016/03/01 12:40] – rewrite terrabots | embedded:adventures:rcservo [2024/08/20 21:38] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ===== RC Servomotor Control ===== | ||
+ | |||
+ | RC servomotors use a form of [[http:// | ||
+ | |||
+ | Most of the modern embedded controller programming IDEs now have a library for performing this task. That makes it super easy to control servo-motors, | ||
+ | |||
+ | Part of getting these servo-motors to work involves calibration. Even though they can be commanded, the problem is that each microcontroller and programming interface has its own numerical range for the command specification. | ||
+ | |||
+ | |||
+ | ==== Arduino RC Servomotor Control ==== | ||
+ | |||
+ | To be done. | ||
+ | |||
+ | ==== TI RC Servomotor Control ==== | ||
+ | |||
+ | To be done. | ||
+ | |||
+ | ==== mBed RC Servomotor Control === | ||
+ | |||
Controlling a servo via the mBed requires you to | Controlling a servo via the mBed requires you to | ||
* Write code like that shown below to control it via internal and/or external input - see below for example code | * Write code like that shown below to control it via internal and/or external input - see below for example code | ||
- | * Use an optoisolator chip to eliminate signal problems due to the differences in the voltage level from the mBed (3.3V) and the power supply (likely around 5.0V) - see the Bridging Power Supplies page for information | + | * Use an optoisolator chip to eliminate signal problems due to the differences in the voltage level from the mBed (3.3V) and the power supply (likely around 5.0V) - see the [[embedded: |
- | {{: | + | {{: |
The code shown above can control six servos independently. Note that the code includes commands for serial monitoring; leave them commented out if you don't have a serial monitor running or you'll get errors preventing the code from compiling. The code also has commands for using a potentiometer to control the servos - again, leave that commented out if you won't be using the potentiometer. Finally, you must be sure to import the servo library from the mBed website so that you have the required background functions enabled. | The code shown above can control six servos independently. Note that the code includes commands for serial monitoring; leave them commented out if you don't have a serial monitor running or you'll get errors preventing the code from compiling. The code also has commands for using a potentiometer to control the servos - again, leave that commented out if you won't be using the potentiometer. Finally, you must be sure to import the servo library from the mBed website so that you have the required background functions enabled. | ||
Line 9: | Line 28: | ||
The code causes all six servos to move to approximately 90 degrees to the left of its center point, then move to the right for ten steps of approximately 9* (ending back at its starting point), and repeating. The **wait** can be changed to make this process go faster or slower. | The code causes all six servos to move to approximately 90 degrees to the left of its center point, then move to the right for ten steps of approximately 9* (ending back at its starting point), and repeating. The **wait** can be changed to make this process go faster or slower. | ||
- | In the **servo# | + | In the **servo# |
embedded/adventures/rcservo.1456854011.txt.gz · Last modified: 2024/08/20 21:38 (external edit)