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

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
andresag
Date:
Fri Oct 09 15:44:18 2015 +0000
Parent:
0:d15d47966d92
Commit message:
Sample program that blinks a single LED of the BBC micro:bit display.

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- 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;