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

Committer:
blu12758
Date:
Wed Feb 08 20:31:20 2017 +0000
Revision:
8:1173b502b316
Parent:
7:0f8c3dfbbb86
Child:
10:4dd8b18e07d0
touchscreen working

Who changed what in which revision?

UserRevisionLine numberNew contents of line
blu12758 3:2c0def8b9b22 1 //OU Configurable Robot Project
blu12758 3:2c0def8b9b22 2 //Spring 2017
blu12758 3:2c0def8b9b22 3
blu12758 6:8232db1ed208 4 #include "mbed.h"
blu12758 6:8232db1ed208 5 #include "RobotController.h"
blu12758 6:8232db1ed208 6
blu12758 6:8232db1ed208 7 int main()
blu12758 6:8232db1ed208 8 {
blu12758 6:8232db1ed208 9 //Initialize variables
blu12758 7:0f8c3dfbbb86 10 RobotController* controller = new RobotController();
blu12758 7:0f8c3dfbbb86 11
blu12758 7:0f8c3dfbbb86 12
blu12758 7:0f8c3dfbbb86 13 //Initialize the robot screen
blu12758 7:0f8c3dfbbb86 14 controller->view->init();
blu12758 8:1173b502b316 15 controller->main();
blu12758 8:1173b502b316 16
blu12758 6:8232db1ed208 17
blu12758 6:8232db1ed208 18 while(1)
blu12758 6:8232db1ed208 19 {
blu12758 6:8232db1ed208 20 //check for user selections and react accordingly
blu12758 7:0f8c3dfbbb86 21 controller->listen();
blu12758 6:8232db1ed208 22 }
blu12758 6:8232db1ed208 23 }