Mark Fejes / Mbed 2 deprecated LCD_control

Dependencies:   TextLCD mbed

main.cpp

Committer:
fejesmark
Date:
2015-03-02
Revision:
0:23e522251a91

File content as of revision 0:23e522251a91:

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

TextLCD lcd(p10, p12, p17, p18, p19, p20);

int main() {


    lcd.cls();
    lcd.printf("helloo");
    wait(5);
    lcd.cls();
    lcd.printf("Fuck you!");
    }