This program is the simple test program that students will use to ensure they can program the FRDM-KL46Z developer board.
main.cpp
- Committer:
- mattshuman
- Date:
- 2016-08-13
- Revision:
- 1:a54d88ce664d
- Parent:
- 0:1a4409fd59d6
File content as of revision 1:a54d88ce664d:
#include "mbed.h" DigitalOut led(LED_RED); int main() { while (true) { led = !led; // toggle led wait(0.5f); } }