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.
Revision 1:a9da1b6cfd44, committed 2016-12-10
- Comitter:
- hux
- Date:
- Sat Dec 10 18:24:59 2016 +0000
- Parent:
- 0:7242c5c68a3a
- Commit message:
- 6 liner Hello_IoT, runs a blinking LED1, provided with Readme file
Changed in this revision
| Readme.md | Show annotated file Show diff for this revision Revisions of this file |
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Readme.md Sat Dec 10 18:24:59 2016 +0000 @@ -0,0 +1,13 @@ +T01_Hello_IoT + +Simple 'Hello, World' type program for embedded hardware which causes LED1 +continuously to blink. The code is kept very tiny (6 source lines, excluding +comments and blank lines). + +A quite similar program is found in the mbed featured repo: +https://developer.mbed.org/teams/mbed-os-examples/code/mbed-os-example-blinky/ + +Tested Boards: + NUCLEO-L476RG, NUCLEO-F303K8, NUCLEO-F401RE + nRF51-DK + \ No newline at end of file
--- a/main.cpp Thu Dec 08 07:59:47 2016 +0000 +++ b/main.cpp Sat Dec 10 18:24:59 2016 +0000 @@ -1,5 +1,5 @@ -// Hello_IoT -// Tested with nRF51-DK, NUCLEO-F401RE, NUCLEO-L476RG, NUCLEO-F303K8 +// T01_Hello_IoT +// Tested on boards: nRF51-DK, NUCLEO-F401RE, NUCLEO-L476RG, NUCLEO-F303K8 #include <mbed.h>