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.
main.cpp
- Committer:
- hux
- Date:
- 2016-12-08
- Revision:
- 0:7242c5c68a3a
- Child:
- 1:a9da1b6cfd44
File content as of revision 0:7242c5c68a3a:
// Hello_IoT 
// Tested with nRF51-DK, NUCLEO-F401RE, NUCLEO-L476RG, NUCLEO-F303K8 
#include <mbed.h>
   DigitalOut led(LED1);
   main()
   {  
      for(;;) led = !led, wait(1.0);  
   }