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

Revision:
7:0f8c3dfbbb86
Parent:
4:4989e85d16b6
Child:
8:1173b502b316
--- a/Classes/RobotMVC/RobotController.cpp	Tue Feb 07 20:44:52 2017 +0000
+++ b/Classes/RobotMVC/RobotController.cpp	Tue Feb 07 22:45:45 2017 +0000
@@ -0,0 +1,30 @@
+//OU Configurable Robot Project
+//Spring 2017
+//William Bonner
+
+#include "RobotController.h"
+
+//Constructors/Destructors
+RobotController::~RobotController()
+{
+    //#TODO
+}
+
+RobotController::RobotController()
+{
+    setView(new RobotView());
+    setModel(new RobotModel());
+}
+
+//Handles choices made by the user on the robot interface
+//input: selection value
+void RobotController::UserSelection(int s)
+{
+    //#TODO handle user selections
+}
+
+//Listens for inputs
+void RobotController::listen()
+{
+    view->listen();
+}
\ No newline at end of file