lcd_16x2

Dependencies:   mbed SeeedShieldBot TextLCD BluetoothSerial

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "TextLCD.h"
00003 DigitalOut myled(LED1);
00004 TextLCD ark(PA_8,PA_1,PA_4,PB_0,PC_1,PC_0);
00005 int main()
00006 {
00007     ark.cls();
00008     
00009     while(1) {
00010         ark.locate(5,0);
00011         ark.printf("HEllo");
00012           ark.locate(5,1);
00013         ark.printf("world");
00014         
00015     }
00016 }