Laert LLeshi

Dependencies:   TextLCD mbed

Fork of TextLCD_HelloWorld by Simon Ford

main.cpp

Committer:
lleshi23
Date:
2018-05-28
Revision:
3:ebb55dc10d31
Parent:
2:ad0b044d0a10

File content as of revision 3:ebb55dc10d31:

// Hello World! for the TextLCD

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

TextLCD lcd(PTC7, PTC0, PTC3, PTC4, PTC5, PTC6); // rs, e, d4-d7

int main() {
    lcd.printf("Access Granted\n");
    lcd.printf("Access Denied\n");
}