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 "TextLCD.h" 00003 00004 //FVP for lcd. rs,en,d4-d7, type of lcd 00005 TextLCD lcd(PTA1, PTA2, PTD4, PTA12, PTA4, PTA5, TextLCD::LCD16x2); //rs, e, d4-d7 00006 00007 int main() 00008 { 00009 00010 while(1) { 00011 lcd.printf("Hello"); 00012 wait(1); 00013 lcd.cls(); //clear lcd 00014 00015 } 00016 } 00017
Generated on Fri Jul 22 2022 14:50:00 by
1.7.2