Code to run the microcontrollers on the R5 competition bot

Dependencies:   LineSensors mbed

loader.cpp

Committer:
Hypna
Date:
2015-04-18
Revision:
20:0e6b7dce21c0
Child:
21:44d9b42c04a9

File content as of revision 20:0e6b7dce21c0:

#include "DriveController.h"
#include <mbed>

InterruptIn button(

void waitForPress();

int main()
{
    DriveController myTreads;
    waitForPress();
    myTreads.firstPass();
    waitForPress();
    myTreads.secPass();   
    return 0;
}

void waitForPress()
{
    
}