Clase Microcontroladores

Dependencies:   TextLCD mbed

Fork of TextLCD_HelloWorld by Simon Ford

main.cpp

Committer:
dan_cuspi
Date:
2013-09-03
Revision:
3:0828eb8644e7
Parent:
2:ad0b044d0a10

File content as of revision 3:0828eb8644e7:

// Hello World! for the TextLCD

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

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

int main() {
    lcd.printf("Hola mundo! ya\n");
}