kha lif / Mbed 2 deprecated LCDBMET

Dependencies:   TextLCD mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 
00003 #include "TextLCD.h" 
00004 TextLCD lcd(D8, D9, D4, D5, D6, D7); //rs,e,d0,d1,d2,d3 
00005 int main() 
00006 { 
00007 lcd.printf("BMT 4033"); 
00008 while (1) 
00009 { 
00010 lcd.locate(4,1); 
00011 lcd.printf("EMBEDDED"); 
00012 }
00013 }
00014