20140907

Dependencies:   TextLCD TextLCD_HelloWorld mbed

Committer:
nishansryochi
Date:
Wed Oct 29 01:21:17 2014 +0000
Revision:
0:5239b1cfa6b6
20140907

Who changed what in which revision?

UserRevisionLine numberNew contents of line
nishansryochi 0:5239b1cfa6b6 1 #include "mbed.h"
nishansryochi 0:5239b1cfa6b6 2 #include "TextLCD.h"
nishansryochi 0:5239b1cfa6b6 3
nishansryochi 0:5239b1cfa6b6 4 TextLCD lcd(p24,p25,p26,p27,p28,p29,p30);//rs,rw,e,d4,d5,d6,d7
nishansryochi 0:5239b1cfa6b6 5
nishansryochi 0:5239b1cfa6b6 6 int main(){
nishansryochi 0:5239b1cfa6b6 7 lcd.cls();
nishansryochi 0:5239b1cfa6b6 8 lcd.printf("AHOBOKE");
nishansryochi 0:5239b1cfa6b6 9 }
nishansryochi 0:5239b1cfa6b6 10