test program for display

Dependencies:   TextLCD mbed

main.cpp

Committer:
mganseij
Date:
2015-10-22
Revision:
0:4fd09cbb532f

File content as of revision 0:4fd09cbb532f:

// Hello World! for the TextLCD
 
#include "mbed.h"
#include "TextLCD.h"
 
TextLCD lcd(D9, D14, D15, PTB19, PTB18, A4); // rs, e, d4-d7 

int main()
{
    lcd.printf("You Fool! Stoorvogel! ");
    wait(3);
    lcd.cls();
    lcd.printf("Stochastic Signals! \n We are the mBed!");
}