Stefan Lewicki
/
B16_BusOut_Led_Lektion
Leds mit BusOut ansteuern
Diff: main.cpp
- Revision:
- 0:063bc01770bf
--- /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); + + } +}