Skip to content

Commit 50d26c5

Browse files
Update content/Education and Kits/CTC 101 and CTC UNO/Troubleshoot-servo-motors.md
Co-authored-by: seaxwi <[email protected]>
1 parent 3ec881d commit 50d26c5

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

content/Education and Kits/CTC 101 and CTC UNO/Troubleshoot-servo-motors.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,13 @@ Learn how to troubleshoot servos that are not moving or moving erratically.
99

1010
## Quick checks
1111

12-
1. **Check connections:**
12+
1. **Check connections:** Make sure the connection between the servo and the board is correct. Check the [Basic servo control tutorial](https://docs.arduino.cc/tutorials/generic/basic-servo-control) for a circuit diagram example.
1313

14-
* Make sure the connection between the servo and the board is correct. Check the [Basic servo control tutorial](https://docs.arduino.cc/tutorials/generic/basic-servo-control) for a circuit diagram example.
14+
2. **Verify pin configuration:** Confirm that you've connected the servo to the same pin referenced in the code. For example, if you are using the [servo library](https://www.arduino.cc/reference/en/libraries/servo/), the code might inlcude a line such as `myservo.attach(9)` to link the servo to a specific pin on the board. In this case, the **signal** input on the servo should be connected to the pin 9 on the board.
1515

16-
2. **Verify Pin Configuration:**
16+
3. **Power considerations:** Servo motors draw significant power, and the board might not supply enough energy. If you need to drive more than one or two servos, you may need to power them from a separate supply (i.e. not the 5V pin on your Arduino). Make sure the grounds of the Arduino and the external power supply are connected. Check the diagram below for an example circuit:
1717

18-
* Confirm that you've connected the servo to the same pin mentioned in the code. For example, if you are using the [servo library](https://www.arduino.cc/reference/en/libraries/servo/), the code might inlcude a line such as `myservo.attach(9)` to link the servo to a specific pin on the board. In this case, the **signal** input on the servo should be connected to the pin 9 on the board.
19-
20-
3. **Power Considerations:**
21-
22-
* Servo motors draw significant power, and the board might not supply enough energy. If you need to drive more than one or two servos, you may need to power them from a separate supply (i.e. not the 5V pin on your Arduino). Make sure the grounds of the Arduino and the external power supply are connected. Check the diagram below for an example circuit:
23-
24-
![two servo motors connected to the digital pins of an Arduino board, powered through a external battery connected to a breadboard](img/2-servos-set-up-diagram.png)
18+
![Two servo motors connected to the digital pins of an Arduino board, powered through a external battery connected to a breadboard.](img/2-servos-set-up-diagram.png)
2519

2620
## Further reading
2721

0 commit comments

Comments
 (0)