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.
Dependencies: C12832 LM75B mbed EthernetInterface mbed-rtos
lcd.cpp
00001 #include "lcd.h" 00002 00003 namespace ProjectOne{ 00004 00005 LCD::LCD(PinName firstPin, PinName secondPin, PinName thirdPin, PinName fourthPin, PinName fifthPin) : lcd(firstPin,secondPin,thirdPin,fourthPin,fifthPin){ 00006 00007 } 00008 00009 void LCD::displayChars(char characters_to_display[]){ 00010 clearLcd(); 00011 lcd.locate(0,3); 00012 lcd.printf(characters_to_display); 00013 } 00014 00015 void LCD::clearLcd(void){ 00016 lcd.cls(); 00017 } 00018 00019 00020 }
Generated on Sat Jul 23 2022 22:59:36 by
1.7.2