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: BSP_B-L475E-IOT01
main.cpp
- Committer:
- bcostm
- Date:
- 2017-01-31
- Revision:
- 0:280450d2b3cc
- Child:
- 5:2d1980c7ca2d
File content as of revision 0:280450d2b3cc:
#include "mbed.h"
DigitalOut led1(LED1);
int main()
{
while(1) {
led1 = !led1;
wait(1);
}
}