Simple hello world LCD program for NGX base board

Dependencies:   mbed

main.cpp

Committer:
ashwin_athani
Date:
2010-12-06
Revision:
0:4b2e51e5fb3d

File content as of revision 0:4b2e51e5fb3d:

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

TextLCD lcd(p24, p25, p26, p27, p28, p29, p30); // rs, rw, e, d4, d5, d6, d7

int main() {
      lcd.cls();
      lcd.printf("NGX Technologies");
}