Skip to content

Commit 4843684

Browse files
committed
Review tweaks - servo API
1 parent 21bf83d commit 4843684

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

programming/servos.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ title: Servos Board API
66
Servos Board API
77
================
88

9-
The kit can control multiple servos.
10-
One servo board can control up to 12 servos.
11-
See the [Servo Board](/docs/kit/servo_board) hardware page for more details about this board.
9+
The servo board provided in the kit can control up to 12 servos.
10+
See the [Servo Board]({{ site.baseurl }}/kit/servo_board) hardware page for more details about this board.
1211

1312

1413
Accessing the Servo Board
@@ -27,12 +26,15 @@ my_servo_board = robot.servo_board
2726
Setting servo positions
2827
-----------------------
2928

30-
Each of the twelve servo outputs can be controlled separately.
31-
The servo outputs are numbered 0-11, see the [Servo Board](/docs/kit/servo_board#connectors) docs for details of which output is which.
29+
<div class="warning" markdown="1">
30+
To use servo outputs 8-11 power must be provided through the auxillary power input at an appropriate voltage for the connected servos.
31+
See the [Servo Board]({{ site.baseurl }}/kit/servo_board#auxiliary-outputs) page for more info.
32+
</div>
3233

33-
This board object has an array containing the servos connected to it, which can be accessed as servos[0], servos[1], servos[2], etc.
34-
The servo board is labelled so you know which servo is which.
34+
Each of the twelve servo outputs can be controlled separately.
35+
The servo outputs are numbered 0-11, see the [Servo Board]({{ site.baseurl }}/kit/servo_board#connectors) docs for details of which output is which.
3536

37+
This board object has an array called `servos` containing the servos connected to it.
3638
The position of servos can range from `-1` to `1` inclusive:
3739

3840
~~~~~ python

0 commit comments

Comments
 (0)