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.
Display.cpp
00001 #include "Display.h" 00002 00003 Display::Display() 00004 { 00005 this->__lcd = new TextLCD(PA_6, PA_7, PB_6, PC_7, PA_9, PA_8, TextLCD::LCD16x2); 00006 } 00007 00008 void Display::show(char *buffer0, char *buffer1) 00009 { 00010 this->__lcd->cls(); 00011 if(buffer0) 00012 this->__lcd->locate(0,0); 00013 this->__lcd->printf("%s", buffer0); 00014 if(buffer1) 00015 this->__lcd->locate(0,1); 00016 this->__lcd->printf("%s", buffer1); 00017 }
Generated on Sat Jul 16 2022 00:03:47 by
1.7.2