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 TextLCD MonLCD(p19,p20,p21,p22,p23,p24); //broches associées à ... //rs,e,d4,d5,d6,d7 00004 00005 int main() 00006 { 00007 MonLCD.cls(); // efface l’écran 00008 MonLCD.locate(0,0); // déplace le curseur ligne 1, 1ème caractère 00009 MonLCD.printf("Hello"); 00010 MonLCD.locate(0,1); // déplace le curseur ligne 2, 1ème caractère 00011 MonLCD.printf("World!"); 00012 }
Generated on Fri Aug 19 2022 00:44:09 by
1.7.2