mirror of
https://github.com/YikeStone/ros_arduino_bridge.git
synced 2025-08-03 19:24:09 +05:30
17 lines
189 B
C
17 lines
189 B
C
/* Define the attachment of any servos here.
|
|
The example shows one servo attached on pin 11.
|
|
*/
|
|
|
|
#define N_SERVOS 2
|
|
|
|
Servo servos [N_SERVOS];
|
|
byte servoPins [N_SERVOS] = {3, 6};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|