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 "C12832_lcd.h" 00003 00004 C12832_LCD lcd; 00005 00006 int i=0; 00007 00008 int main() 00009 { 00010 00011 lcd.printf("Hello Colluders!"); 00012 00013 lcd.locate(0,20); 00014 lcd.printf("Here's a counter: "); 00015 00016 while(1) { 00017 00018 lcd.locate(100,20); 00019 i=i+1; 00020 lcd.printf("%3d",i); 00021 wait(0.2); 00022 if (i==999) { 00023 i=0; 00024 } 00025 } 00026 }
Generated on Tue Jul 19 2022 12:29:29 by
1.7.2