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 #include "LED_Bar.h" 00003 00004 LED_Bar bar(D6, D5); 00005 DigitalIn button(A0); 00006 00007 int main() { 00008 int j; 00009 bar.setLevel(0); 00010 00011 while(1) { 00012 wait(0.3); 00013 if (button) { 00014 bar.setLevel(j++); 00015 } else { 00016 bar.setLevel(j); 00017 } 00018 if (j == 11) { 00019 bar.setLevel(0); 00020 j = 0; 00021 } 00022 } 00023 }
Generated on Sat Jul 16 2022 21:50:14 by
1.7.2