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.
Test
- include "mbed.h"
- define BUTTON1 B1
DigitalIn enable(A0); DigitalOut myled1(LED1);
int main() { while(1) { if(enable) {
myled1 = !myled1; wait_ms(5000); }
} }