Getting Synched

First time after a lot of tries. -Bill
This commit is contained in:
Bill Verplank
2012-12-07 08:15:45 -08:00
parent 0a0e857cea
commit 4c9e2ee748
23 changed files with 1849 additions and 439 deletions
+14
View File
@@ -0,0 +1,14 @@
//position
//sends A0 (MotorA), A3 (MotorB) to Serial Monitor
void setup()
{
Serial.begin(9600);
}
void loop()
{
Serial.print(analogRead(A3));
Serial.print(" ");
Serial.println(analogRead(A0));
}