cagdas d
/
lauftest
initial commit and publish
Diff: main.cpp
- Revision:
- 5:c7b761205cd6
- Parent:
- 4:a1b882076f41
--- a/main.cpp Mon Jan 13 17:38:52 2020 +0000 +++ b/main.cpp Mon Jan 13 18:11:55 2020 +0000 @@ -1,6 +1,6 @@ #include "mbed.h" -// #define BUTTON1 A1 -#define BUTTON1 p14 +//#define BUTTON1 A1 +//#define BUTTON1 p14 BusOut myleds(LED1,LED2,LED3,LED4); DigitalIn button(BUTTON1); @@ -42,6 +42,7 @@ } int lauflicht(bool richtung, int time, int &anz){ + int i; uint8_t lauf = 0x01; if(!richtung) @@ -51,11 +52,11 @@ if(richtung){ lauf = lauf << 1; if (lauf > 8) - lauf = 0x08; + lauf = 0x01; } else { lauf = lauf >> 1; - if ( lauf == 0) + if (lauf == 0) lauf = 0x08; } if (button)