LCD D7-P8,D6-P9,D5-P10,D4-P11,RS-P13,E-P12

Dependencies:   TextLCD mbed

main.cpp

Committer:
rajivwagle
Date:
2018-03-08
Revision:
0:ebcf99ad1a5c

File content as of revision 0:ebcf99ad1a5c:


#include "mbed.h"
#include "TextLCD.h"
 
TextLCD lcd(p13, p12, p11, p10, p9, p8, TextLCD::LCD16x2); // rs, e, d4-d7
 
int main() {
    lcd.printf("Hello BMW World!\n");
}