1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/**
* <rc/servo.h>
*
* @brief Control Servos and Brushless Motor Controllers.
*
* The Robotics Cape has 8 3-pin headers for connecting hobby servos and ESCs.
* These are driven by the PRU for extremely precise signaling with minimal CPU
* use. Standard 3-pin servo connectors are not polarized so pay close attention
* to the symbols printed in white silkscreen on the cape before plugging
* anything in. The black/brown ground wire should always be closest to the cape
* PCB. The pinnout for these standard 3 pin connectors is as follows.
*
* - 1 Ground
* - 2 6V Power
* - 3 Pulse width signal
*
* Both servos and Brushless ESCs expect pulse width signals corresponding to
* the desired output position or speed. These pulses normally range from 900us
* to 2100us which usually corresponds to +- 60 degrees of rotation from the
* neutral position. 1500us usually corresponds to the center position. Many
* servos work up to +- 90 degrees when given pulse widths in the extended range
* from 600us to 2400us. Test the limits of your servos very carefully to avoid
* stalling the servos motors.
*
* | Normalized Width | Pulse Width | Servo Angle |
* |:----------------:|:-------------:|:-------------:|
* | -1.5 | 600us | 90 deg ccw |
* | -1.0 | 900us | 60 deg ccw |
* | 0.0 | 1500us | centered |
* | 1.0 | 2100us | 60 deg cw |
* | 1.5 | 2400us | 90 deg cw |
*
* Unlike PWM which is concerned with the ratio of pulse width to pulse
* frequency, servos and ESCs are only concerned with the pulse width and can
* tolerate a wide range of update frequencies. Servos can typically tolerate
* update pulses from 5-50hz with more expensive digital models sometimes
* capable of higher update rates. Brushless ESCs are much more tolerant and
* typically accept update rates up to 200hz with some multirotor ESCs capable
* of 400hz when using sufficiently short pulse widths.
*
* Since ESCs drive motor unidirectionally, it makes more sense to think of
* their normalized throttle as ranging from 0.0 (stopped) to 1.0 (full power).
* Thus, these functions translate a normalized value from 0.0 to 1.0 to a pulse
* width between 1000us and 2000us which is a common factory-calibration range
* for many ESCs. We suggest using the rc_calibrate_escs example program on all
* ESCs used with the robotics cape to ensure they are calibrated to this exact
* pulse range.
*
* We HIGHLY recommend the use of ESCs which use the BLHeli firmware because
* this firmware allows the input pulse range to be programmed to exactly
* 1000-2000us and the old fashioned calibration mode to be disabled. This
* prevents accidental triggering of calibration mode during use and removes the
* need to run rc_calibrate_escs. BLHeli includes a plethora of configurable
* settings and features such as easily adjustable timing and sounds. More
* information on the BLHeli open source project here.
*
* Unless calibration mode is disabled, most ESCs will go into a failsafe or
* calibration mode if the first signals they receive when powered up are not
* their calibrated minimum pulse width corresponding to the throttle-off
* condition. Therefore it is necessary for your program to start sending pulses
* with a normalized value of 0.0 for a second or more before sending any other
* value to ensure expected operation.
*
* Some ESCs, including those running BLHeli firmware, will wake up but keep the
* motor idle when receiving pulses slightly below the minimum. This is largely
* undocumented but we call this "idle" mode. For this reason we allow inputs to
* rc_send_esc_pulse_normalized and rc_send_esc_pulse_normalized_all to range
* from -0.1 to 1.0 where 0.0 results in the lowest throttle the ESC allows and
* -0.1 can be used for idle where the motor is entirely powered off but the ESC
* is awake.
*
* A recent trend among ESCs is support of "One-Shot" mode which shrinks the
* pulse range down to 125-250us for reduced latency. Like
* rc_send_esc_pulse_normalized, these oneshot equivalents also take a range
* from -0.1 to 1.0 to allow for idle signals.
*
* @author James Strawson
* @date 3/7/2018
*
* @addtogroup Servo
* @{
*/
extern "C" __cplusplus
}
// RC_SERVO_H
/** @} end group Servo */