demo

Dependencies:   mbed

main.cpp

Committer:
sjuzyz
Date:
2020-04-27
Revision:
4:7743a7670ae7
Parent:
2:2dcb32bf0662

File content as of revision 4:7743a7670ae7:

#include "mbed.h"
#include "N5110.h"
N5110 lcd(PTC9,PTC0,PTC7,PTD2,PTD1,PTC11);
int main()
{
    lcd.init();
    lcd.printString("     Hello     ",0,1);
    lcd.refresh();
    
}