automotive simulation thingy

Dependencies:   N5110 ShiftReg Tone mbed

Fork of 1620_Project_Template by Craig Evans

Revision:
0:d5312060f649
Child:
2:e7e39d27b11f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ModeA/ModeA.cpp	Wed Mar 08 20:05:58 2017 +0000
@@ -0,0 +1,17 @@
+#include "ModeA.h"
+
+void mode_A() {
+    
+    lcd.clear();
+    lcd.printString("Mode A",0,0);
+    lcd.refresh();
+    wait_ms(250);  // small delay to prevent previous press being detected again
+
+    while (button_a.read() == 0) {
+        
+        // code goes in here - this acts like the main while(1) loop
+        
+
+    }
+
+}
\ No newline at end of file