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 DigitalIn btn(PTE25,PullUp); 00004 DigitalOut led(LED_RED,1); 00005 00006 int main(){ 00007 while (1){ 00008 if (!btn){ 00009 while (!btn){ wait(0.05f);} 00010 led = !led; 00011 } 00012 } 00013 } 00014 /* 00015 DigitalOut gpo(D0); 00016 DigitalOut led(LED_RED); 00017 00018 int main() 00019 { 00020 while (true) { 00021 gpo = !gpo; // toggle pin 00022 led = !led; // toggle led 00023 wait(0.2f); 00024 } 00025 } 00026 */
Generated on Tue Jul 12 2022 23:56:22 by
1.7.2