Sample program that blinks a single LED of the BBC micro:bit display.

Dependencies:   mbed

Revision:
1:da967684f38f
Parent:
0:d15d47966d92
--- a/main.cpp	Fri Oct 09 15:28:16 2015 +0000
+++ b/main.cpp	Fri Oct 09 15:44:18 2015 +0000
@@ -1,8 +1,8 @@
 #include "mbed.h"
- 
+
 DigitalOut row(P0_13);
 DigitalOut col(P0_4, 0);
- 
+
 int main() {
     while(1) {
         row = 1;