lab1question5

Dependencies:   mbed mbed-rtos C12832_lcd LCD_fonts

Files at this revision

API Documentation at this revision

Comitter:
liammchale
Date:
Sat Aug 01 12:15:23 2020 +0000
Parent:
3:3ec443c0842a
Commit message:
lab1question5

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Wed Dec 05 08:06:20 2012 +0000
+++ b/main.cpp	Sat Aug 01 12:15:23 2020 +0000
@@ -114,6 +114,23 @@
         LCD.printf("contrast : %d",j);
         lcd_mutex.unlock();
         Thread::wait(500);   // wait 0.5s
-    }
+
+//thread 5
+//App board joystick
+BusIn joy(p15,p12,p13,p16);
+DigitalIn fire(p14);
+
+BusOut leds(LED1,LED2,LED3,LED4);
 
-}
+int main(); {
+    while(1) {
+        if (fire) {
+            leds=0xf;
+        } else {
+            leds=joy;
+        }
+        wait(0.1);
+         }
+       }
+    }
+}
\ No newline at end of file