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
main.cpp
- Committer:
- Kojto
- Date:
- 2014-02-20
- Revision:
- 6:a80519d6fdda
- Parent:
- 5:a03b579ee48d
- Child:
- 9:32e85f1fcd15
File content as of revision 6:a80519d6fdda:
#include "mbed.h" int main() { DigitalOut gpo(D0); DigitalOut led(LED_RED); while (true) { gpo = 1; led = 1; // off wait(2); gpo = 0; led = 0; // on wait(2); } }