lcd_16x2

Dependencies:   mbed SeeedShieldBot TextLCD BluetoothSerial

main.cpp

Committer:
gkali
Date:
2022-04-26
Revision:
0:8dc2120fec08

File content as of revision 0:8dc2120fec08:

#include "mbed.h"
#include "TextLCD.h"
DigitalOut myled(LED1);
TextLCD ark(PA_8,PA_1,PA_4,PB_0,PC_1,PC_0);
int main()
{
    ark.cls();
    
    while(1) {
        ark.locate(5,0);
        ark.printf("HEllo");
          ark.locate(5,1);
        ark.printf("world");
        
    }
}