Prueba de LCD

Dependencies:   mbed

Committer:
jvicente
Date:
Thu Jan 10 11:20:16 2019 +0000
Revision:
9:54d77c269943
Prueba LCD

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jvicente 9:54d77c269943 1 #include "mbed.h"
jvicente 9:54d77c269943 2
jvicente 9:54d77c269943 3 TextLCD lcd(D8, D9, D2, D3, D4, D5, TextLCD::LCD16x2); // rs, e, d4-d7
jvicente 9:54d77c269943 4
jvicente 9:54d77c269943 5 int main(){
jvicente 9:54d77c269943 6 lcd.printf("Hello World!\n");
jvicente 9:54d77c269943 7
jvicente 9:54d77c269943 8 }
jvicente 9:54d77c269943 9