h

Dependencies:   TextLCD mbed

main.cpp

Committer:
suads
Date:
2018-02-01
Revision:
0:7376fc7a774b

File content as of revision 0:7376fc7a774b:

// Hello World! for the TextLCD

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

TextLCD lcd(D2, D3, D4, D5, D6, D7); // rs, e, d4-d7

int main() {
    lcd.printf("Hello GRGA!\n");
    wait(3);
    //lcd.cls();
    lcd.locate(0,0);
    lcd.printf("Whats Up");
        lcd.cls();
        wait(3);

}