BusIn to BusOut; Joystick to 4 blue Leds

Dependencies:   mbed

Revision:
0:1b9b99ca9d6c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Nov 25 11:07:47 2019 +0000
@@ -0,0 +1,15 @@
+#include "mbed.h"
+ 
+BusOut leds(LED1,LED2,LED3,LED4);
+BusIn joy(p15,p12,p13,p16);
+DigitalIn fire(p14);
+  
+int main() {
+    while(1) {
+        if (fire) {
+            leds=0xf;
+        } else {
+            leds=joy;
+        }
+    }
+}
\ No newline at end of file