TEXT LCD test of CORE-1000

Dependencies:   LCDLib mbed

main.cpp

Committer:
odb
Date:
2017-02-03
Revision:
1:f669e4e75a21
Parent:
0:0a5c73c2369a
Child:
2:a6025c5ce99e

File content as of revision 1:f669e4e75a21:

#include "mbed.h"
#include "TextLCD.h"

 TextLCD lcd(PC_6,PC_8,PC_5,PC_0,PA_12,PA_11,PB_12);
 int main()
 {    
    lcd.gotoxy(1,1);
    lcd.printf("Hello BUSAN KOPO");
 
    lcd.gotoxy(1,2);
    lcd.printf("CORE ONE Tech...");
    
    while(1) {
        wait_ms(300);
    }
 }