This program is the simple test program that students will use to ensure they can program the FRDM-KL46Z developer board.

Dependencies:   mbed

Revision:
1:a54d88ce664d
Parent:
0:1a4409fd59d6
--- a/main.cpp	Fri Aug 12 21:36:32 2016 +0000
+++ b/main.cpp	Sat Aug 13 08:29:27 2016 +0000
@@ -1,12 +1,10 @@
 #include "mbed.h"
 
-//DigitalOut gpo(D0);
 DigitalOut led(LED_RED);
 
 int main()
 {
     while (true) {
-        //gpo = !gpo; // toggle pin
         led = !led; // toggle led
         wait(0.5f);
     }