Test Programm

Dependencies:   mbed

Revision:
2:b43b5da6f341
Parent:
1:b6f2a3f6e8eb
Child:
3:9be1093ae35e
--- a/main.cpp	Mon Jan 13 17:31:07 2020 +0000
+++ b/main.cpp	Mon Jan 13 17:37:00 2020 +0000
@@ -5,7 +5,7 @@
 //int modifybBit (int x, unsigned char position, bool State);
 //int lauflicht (bool richtung, int time, int &anz);
 void nibbleLeds (int value);
-//void printb (uint8_t x);
+void printb (uint8_t x);
 
 BusOut myleds(LED1, LED2, LED3, LED4);
 DigitalIn button(BUTTON1);
@@ -19,6 +19,11 @@
    nibbleLeds(value);
    wait (0.1);
   }  
+  void printb (uint8_t x){
+      for (int i = sizeof(x)<<3; i; i--)
+       putchar('0'+((x>>(i-1))&1));
+       printf("\n");
+       }
   
   void nibbleLeds(int value){
       myleds = value%16;