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-dsp
Fork of mbed-os-example-blinky by
main.cpp
- Committer:
- KlaraBengtsson
- Date:
- 2017-03-29
- Revision:
- 35:935167115537
- Parent:
- 34:90d3527a2258
- Child:
- 36:603944df2332
- Child:
- 37:3bc968f47d9b
File content as of revision 35:935167115537:
#include "mbed.h" DigitalOut led1(LED1); // main() runs in its own thread in the OS int main() { while (true) { led1 = !led1; //ändrade värdet från 0.5 till 0.6 wait(2); } }