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:
- isabellemm
- Date:
- 2022-03-09
- Revision:
- 1:d94be0bcadcc
- Parent:
- 0:fc9c0d1b575d
- Child:
- 2:46bbc8fadd10
File content as of revision 1:d94be0bcadcc:
#include "mbed.h"
DigitalOut led(D13);
int main() {
while(1) {
led = 1; //LED on
wait(1);
led = 0; //LED off
wait(1);
}
}