mirror of
https://github.com/YikeStone/ros_arduino_bridge.git
synced 2025-08-05 20:14:07 +05:30
17 lines
196 B
C
17 lines
196 B
C
/* Define the attachment of any servos here.
|
|
The example shows two servos attached on pins 3 and 5.
|
|
*/
|
|
|
|
#define N_SERVOS 2
|
|
|
|
Servo servos [N_SERVOS];
|
|
byte servoPins [N_SERVOS] = {3, 5};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|