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:
- danielr2020
- Date:
- 2020-04-29
- Revision:
- 3:b79118f8dc22
- Parent:
- 2:d1fda51a728b
- Child:
- 4:d0dc5b10726c
File content as of revision 3:b79118f8dc22:
#include "mbed.h" DigitalOut myled(LED3); int main() { //HOLA DANIELITO //COMO VA //ME PRESTA LUCA while(1) { myled = 1; wait(0.5); myled = 0; wait(0.2); } }