Code to run the microcontrollers on the R5 competition bot

Dependencies:   LineSensors mbed

Committer:
Hypna
Date:
Sat Sep 20 07:15:05 2014 +0000
Revision:
0:e60f22c1d573
Just getting things started

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Hypna 0:e60f22c1d573 1 #include "DriveController.h"
Hypna 0:e60f22c1d573 2
Hypna 0:e60f22c1d573 3 int main()
Hypna 0:e60f22c1d573 4 {
Hypna 0:e60f22c1d573 5 DriveController myWheels;
Hypna 0:e60f22c1d573 6
Hypna 0:e60f22c1d573 7 myWheels.go();
Hypna 0:e60f22c1d573 8
Hypna 0:e60f22c1d573 9 return 0;
Hypna 0:e60f22c1d573 10 }