CoDroneVibrateTest.ino 197 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #define LeftVib 27 #define RightVib 28 void setup() { pinMode(LeftVib,OUTPUT); pinMode(RightVib,OUTPUT); } void loop() { digitalWrite(LeftVib,HIGH); digitalWrite(RightVib,HIGH); }