00001 /* Define the attachment of any servos here. 00002 The example shows two servos attached on pins 3 and 5. 00003 */ 00004 00005 #define N_SERVOS 2 00006 00007 Servo servos [N_SERVOS]; 00008 byte servoPins [N_SERVOS] = {3, 5}; 00009 00010 00011 00012 00013 00014 00015 00016