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 /* Program Example 8.6: LCD Counter example 00002 */ 00003 00004 #include "mbed.h" 00005 #include "TextLCD.h" 00006 TextLCD lcd(p19, p20, p21, p22, p23, p24); // rs, e, d0, d1, d2, d3 00007 int x=0; 00008 00009 int main() { 00010 lcd.printf("LCD Counter"); 00011 while (1) { 00012 lcd.locate(5,1); 00013 lcd.printf("%i",x); 00014 wait(0.01); 00015 x++; 00016 } 00017 }
Generated on Sat Sep 10 2022 23:57:42 by
1.7.2