Modify the BlinkTicker example to use LED1, LED2, and LED3 for showing the three least significant bits of an 8 bit counter

Dependencies:   mbed

Revision:
4:188e09ae3df9
Parent:
3:22314e85092e
--- a/main.cpp	Tue Nov 13 13:52:53 2018 +0000
+++ b/main.cpp	Tue Nov 13 13:56:53 2018 +0000
@@ -28,7 +28,6 @@
         led3 = 0;
     }
     
-    printf("%u - %u - %u \n", counter & (1 << (0)), counter & (1 << (1)), counter & (1 << (2)));
     counter++;
 }