lcdpt

Dependencies:   TextLCD mbed

Fork of LCD by syakir shamsudin

main.cpp

Committer:
syakir93
Date:
2018-05-17
Revision:
0:be9390948f63

File content as of revision 0:be9390948f63:

 #include "mbed.h"
 #include "TextLCD.h"
  TextLCD lcd(D8, D9, D4, D5, D6, D7); // rs, e, d0, d1, d2, d3 
  int x=0; 
  int main() 
  { lcd.printf("syakir"); 
  while (1) 
  { lcd.locate(5,1);
   lcd.printf("EMBEDDED");
  //  wait(1); 
//    x++; 
}
     }