Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Fork of FTF2014_lab1 by
main.cpp
- Committer:
- Kojto
- Date:
- 2014-04-07
- Revision:
- 2:db73737ec9af
- Parent:
- 0:2447103e1bae
File content as of revision 2:db73737ec9af:
#include "mbed.h"
DigitalOut myled(LED1);
int main() {
printf("Hello World from FRDM-K64F board.\n");
while (true) {
wait(0.5);
myled = !myled;
}
}
