version 1.0

Dependencies:   CMSIS_DSP_401 GPS MPU9150_DMP PID QuaternionMath Servo mbed

Fork of SolarOnFoils_MainModule_20150518 by Dannis Brugman

Revision:
0:81b21910454e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LCD_Menu.cpp	Tue Jun 23 13:55:28 2015 +0000
@@ -0,0 +1,22 @@
+
+
+#include "LCD_Menu.h"
+#include "LCD_I2C.h"
+
+void vActualMenu(MENU_t menu)
+{
+    switch (menu){
+        case STARTUP:
+                        vLCD_printPos_I2C((unsigned char*)"Initialize      ", 1, 3);
+                        vLCD_printPos_I2C((unsigned char*)" Solar on Foils ", 2, 1);
+                        break;
+        default:
+                        vLCD_printPos_I2C((unsigned char*)"Error default   ", 1, 3);
+                        vLCD_printPos_I2C((unsigned char*)" Solar on Foils ", 2, 1);
+                        break;
+    }   // end off switch case
+}
+
+//////////////////////////////////////////////////////////////////////////////////////
+// EOF                                                                              //
+//////////////////////////////////////////////////////////////////////////////////////