Leds mit BusOut ansteuern

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
Lenschinki
Date:
Thu Jun 02 16:24:46 2016 +0000
Commit message:
B16 BusOut Led

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
diff -r 000000000000 -r 063bc01770bf main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Jun 02 16:24:46 2016 +0000
@@ -0,0 +1,26 @@
+/***********************************
+name:   Bertl16 BusOut_LED_Lektion
+author: Lewicki
+***************************/
+#include "mbed.h"
+
+BusOut leds(P1_18,P2_16,P1_21,P1_20);      //LEDS D10,D11,D13,D12 (DIE HINTERM MOTOR)
+double x = 0.3;  
+
+//Mehrere LEDS/Ausgänge auf einmal mit einer Variable definieren
+//Mit Hexadecimal-System ausgänge ansteuern
+                    
+
+
+int main() 
+{
+    while(1) {
+        leds = 0x0;                        //Hexadecimal 0 = alle ausgänge auf 0 das heist alle LEDS an
+        wait(x);
+        leds = 0x9;                        //Hexadecimal 9 = die zwei in der Mitte auf 0 die am Rand auf 1, heist aus-ein-ein-aus
+        wait(x);
+        leds = 0xF;                        //Hexadecimal F = alle ausgänge auf 1 das heist alle LEDS aus
+        wait(x);
+        
+    }
+}
diff -r 000000000000 -r 063bc01770bf mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Thu Jun 02 16:24:46 2016 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/7c328cabac7e
\ No newline at end of file