Fatima Vunic
/
LAB_Led2
g
leds2.cpp@1:210e74bbbe34, 2019-12-05 (annotated)
- Committer:
- fatima365
- Date:
- Thu Dec 05 18:57:15 2019 +0000
- Revision:
- 1:210e74bbbe34
a
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
fatima365 | 1:210e74bbbe34 | 1 | #include "mbed.h" |
fatima365 | 1:210e74bbbe34 | 2 | |
fatima365 | 1:210e74bbbe34 | 3 | // LSB MSB |
fatima365 | 1:210e74bbbe34 | 4 | // 2^0 2^1 2^2 2^3 2^7 |
fatima365 | 1:210e74bbbe34 | 5 | BusOut lb(D2, D3, D6, D9, D11, D12, A6, D13); |
fatima365 | 1:210e74bbbe34 | 6 | |
fatima365 | 1:210e74bbbe34 | 7 | void main() |
fatima365 | 1:210e74bbbe34 | 8 | { |
fatima365 | 1:210e74bbbe34 | 9 | while(1) |
fatima365 | 1:210e74bbbe34 | 10 | { |
fatima365 | 1:210e74bbbe34 | 11 | BitsSetzen(); |
fatima365 | 1:210e74bbbe34 | 12 | } |
fatima365 | 1:210e74bbbe34 | 13 | } |
fatima365 | 1:210e74bbbe34 | 14 | |
fatima365 | 1:210e74bbbe34 | 15 | void BitsSetzen() |
fatima365 | 1:210e74bbbe34 | 16 | { |
fatima365 | 1:210e74bbbe34 | 17 | lb = 1; // B#0001 D2 leuchtet |
fatima365 | 1:210e74bbbe34 | 18 | wait_ms(500); |
fatima365 | 1:210e74bbbe34 | 19 | lb = 2; // B#0010 D3 leuchtet |
fatima365 | 1:210e74bbbe34 | 20 | wait_ms(500); |
fatima365 | 1:210e74bbbe34 | 21 | lb = 3; // B#0011 D2 und D3 leuchten |
fatima365 | 1:210e74bbbe34 | 22 | wait_ms(500); |
fatima365 | 1:210e74bbbe34 | 23 | lb = 4; // B#0100 D6 leuchtet |
fatima365 | 1:210e74bbbe34 | 24 | wait_ms(500); |
fatima365 | 1:210e74bbbe34 | 25 | lb = 8; // B#1000 D9 leuchtet |
fatima365 | 1:210e74bbbe34 | 26 | } |
fatima365 | 1:210e74bbbe34 | 27 | |
fatima365 | 1:210e74bbbe34 | 28 |