Skip to content

Commit

Permalink
Basic driving code.
Browse files Browse the repository at this point in the history
  • Loading branch information
DMorris42 committed Jul 27, 2014
1 parent a03d9c7 commit cfdc73c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions driving_test_1.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#include <Servo.h>

Servo servo1;
Servo servo2;
int val = 120;

void setup() {
servo1.attach(2);
servo2.attach(3);
servo1.write(val);
servo2.write(val);
}

void loop() {
}

0 comments on commit cfdc73c

Please sign in to comment.