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 #define IOS (0xA0) // PA_5 + PA_7 00004 00005 PortIn myIOs(PortA, IOS); 00006 00007 DigitalOut myled(LED1); 00008 00009 int main() { 00010 while(1) { 00011 if (myIOs.read() != IOS) { // Any of the 2 IOs is low 00012 myled = !myled; // Toggle LED state 00013 wait(0.2); 00014 } 00015 } 00016 } 00017
Generated on Thu Aug 25 2022 19:37:29 by
1.7.2