LCD_test

Dependencies:   mbed TextLCD

Committer:
QuangAnhLe
Date:
Tue Apr 30 10:04:23 2019 +0000
Revision:
0:3c8d9f8a156f
first commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
QuangAnhLe 0:3c8d9f8a156f 1 #include "mbed.h"
QuangAnhLe 0:3c8d9f8a156f 2 #include "TextLCD.h"
QuangAnhLe 0:3c8d9f8a156f 3
QuangAnhLe 0:3c8d9f8a156f 4 TextLCD lcd(PA_6, PA_7, PA_8, PA_9, PA_10, PA_11); // rs, e, d4-d7
QuangAnhLe 0:3c8d9f8a156f 5
QuangAnhLe 0:3c8d9f8a156f 6 int main() {
QuangAnhLe 0:3c8d9f8a156f 7 lcd.printf("Quang Anh\n");
QuangAnhLe 0:3c8d9f8a156f 8 }