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.
Nucleo_BUTTONs_1a.cpp
00001 00002 00003 #include "mbed.h" 00004 00005 00006 DigitalIn sw1( PA_6 ); 00007 00008 DigitalOut led1( PA_9 ); 00009 00010 00011 int main() 00012 { 00013 while(1) 00014 { 00015 00016 if( sw1 == 1 ) 00017 { 00018 led1 = 0; 00019 } 00020 else 00021 { 00022 led1 = 1; 00023 } 00024 00025 } 00026 } 00027
Generated on Tue Jul 12 2022 21:23:01 by
1.7.2