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:
- JPP
- Date:
- 2017-11-21
- Revision:
- 1:17420a732fe8
- Parent:
- 0:1c2d9c93c045
- Child:
- 2:c0afe99e4314
File content as of revision 1:17420a732fe8:
#include "mbed.h"
#include "const.h"
DigitalOut myled(LED1);
DigitalOut myled1(LED2);
int main()
{
while(1) {
myled = 1;
myled1 = 0;
wait(TEMPO1);
myled = 0;
myled = 1;
wait(TEMPO2);
}
}