LCD表示

Dependencies:   TextLCD mbed

Fork of TextLCD_HelloWorld by Simon Ford

LCDに文字を表示

main.cpp

Committer:
hasimo
Date:
2014-07-23
Revision:
3:45ab9449486e
Parent:
2:ad0b044d0a10

File content as of revision 3:45ab9449486e:

// Hello World! for the TextLCD

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

TextLCD lcd(p24, p26, p27, p28, p29, p30); // rs, e, d4-d7

int main() {
    lcd.printf("Hello World!\n");
}