Dr. Davis and Dr. Dyer special studies robotics project

Dependencies:   BSP_DISCO_F469NI LCD_DISCO_F469NI TS_DISCO_F469NI mbed Motordriver

Fork of Configurable_Robots by Christopher Eubanks

main.cpp

Committer:
blu12758
Date:
2017-02-07
Revision:
7:0f8c3dfbbb86
Parent:
6:8232db1ed208
Child:
8:1173b502b316

File content as of revision 7:0f8c3dfbbb86:

//OU Configurable Robot Project
//Spring 2017

#include "mbed.h"
#include "RobotController.h"

int main()
{
    //Initialize variables
    RobotController* controller = new RobotController();

    
    //Initialize the robot screen
    controller->view->init();
    
    while(1)
    {
        //check for user selections and react accordingly
        controller->listen();
    }
}