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
- Committer:
- j0j0
- Date:
- 2021-03-12
- Revision:
- 0:c0add86c31bf
File content as of revision 0:c0add86c31bf:
#include "mbed.h" #include "TextLCD.h" TextLCD MonLCD(p19,p20,p21,p22,p23,p24); //broches associées à ... //rs,e,d4,d5,d6,d7 int main() { MonLCD.cls(); // efface l’écran MonLCD.locate(0,0); // déplace le curseur ligne 1, 1ème caractère MonLCD.printf("Hello"); MonLCD.locate(0,1); // déplace le curseur ligne 2, 1ème caractère MonLCD.printf("World!"); }