Sandro Djuric
/
Test1_SandroDjuric
funktionen
Revision 9:6b36cc59d72c, committed 2020-01-13
- Comitter:
- sandrodjuric
- Date:
- Mon Jan 13 17:53:21 2020 +0000
- Parent:
- 8:2637f87eccde
- Commit message:
- funk lauflicht
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Mon Jan 13 17:24:31 2020 +0000 +++ b/main.cpp Mon Jan 13 17:53:21 2020 +0000 @@ -41,20 +41,20 @@ if(!richtung) lauf = 0x08; - while(1){ + while(1) { nibbleLeds(lauf&0x0F); if(richtung){ - lauf = lauf<<1; - if(lauf>8) - lauf=0x01; + lauf = lauf << 1; + if(lauf > 8) + lauf = 0x01; } - else{ - lauf=lauf >> 1; - if(lauf==0) - lauf=0x08; + else { + lauf = lauf >> 1; + if(lauf == 0) + lauf = 0x08; } if(button) - break; + break; wait_ms(time); anz++; }