TC802B-03 LCD Hello World

Dependencies:   TextLCD mbed

Fork of TextLCD_HelloWorld by Simon Ford

TC802B-03 LCD Testing Code. For RDC Lab 6 Thermostat.

main.cpp

Committer:
YuliangHao
Date:
2016-11-01
Revision:
3:3eb466eaafd5
Parent:
2:ad0b044d0a10

File content as of revision 3:3eb466eaafd5:

// Hello World! for the TextLCD

#include "mbed.h"
#include "TextLCD.h"

TextLCD lcd(p19, p20, p21, p22, p23, p24); // rs, e, d4-d7

int main() {
    lcd.printf("Hello!\n");
}