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
00001 #include "mbed.h" 00002 00003 DigitalOut myled(D15); 00004 DigitalIn button(USER_BUTTON); 00005 DigitalOut led(LED1); 00006 00007 int main() { 00008 while(1) { 00009 00010 if(button == 1) 00011 led = 1; 00012 else led = 0; 00013 00014 myled = 1; // LED is ON 00015 wait(0.05); // 200 ms 00016 myled = 0; // LED is OFF 00017 wait(1); // 1 sec 00018 } 00019 }
Generated on Sat Jul 16 2022 00:32:06 by
1.7.2