mbedボードテスト LCD表示

Dependencies:   TextLCD mbed

Committer:
manimani3712
Date:
Thu Apr 21 10:19:09 2016 +0000
Revision:
0:6fd925307171
???????????

Who changed what in which revision?

UserRevisionLine numberNew contents of line
manimani3712 0:6fd925307171 1 #include "mbed.h"
manimani3712 0:6fd925307171 2 #include "TextLCD.h"
manimani3712 0:6fd925307171 3
manimani3712 0:6fd925307171 4 TextLCD lcd(PTC12, PTC13, PTC16, PTC17, PTA16, PTA17);
manimani3712 0:6fd925307171 5
manimani3712 0:6fd925307171 6 int main() {
manimani3712 0:6fd925307171 7 lcd.printf("HELLO WORLD\n");
manimani3712 0:6fd925307171 8 }