Clase Microcontroladores

Dependencies:   TextLCD mbed

Fork of TextLCD_HelloWorld by Simon Ford

Committer:
dan_cuspi
Date:
Tue Sep 03 15:47:52 2013 +0000
Revision:
3:0828eb8644e7
Parent:
2:ad0b044d0a10
UPAEP LCD Hitachi

Who changed what in which revision?

UserRevisionLine numberNew contents of line
simon 1:7418a52375a0 1 // Hello World! for the TextLCD
simon 1:7418a52375a0 2
simon 0:334327d1a416 3 #include "mbed.h"
simon 0:334327d1a416 4 #include "TextLCD.h"
simon 0:334327d1a416 5
dan_cuspi 3:0828eb8644e7 6 TextLCD lcd(p15, p16, p24, p23, p22, p21); // rs, e, d4-d7
simon 0:334327d1a416 7
simon 0:334327d1a416 8 int main() {
dan_cuspi 3:0828eb8644e7 9 lcd.printf("Hola mundo! ya\n");
simon 0:334327d1a416 10 }