Lee Sang Woon
/
TextLCD
Fork of TextLCD_HelloWorld by
main.cpp@1:ad907eb169ba, 2017-09-12 (annotated)
- Committer:
- Leesangwoon
- Date:
- Tue Sep 12 07:04:41 2017 +0000
- Revision:
- 1:ad907eb169ba
- Parent:
- 0:66332c315595
TextLCD Lib
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
chris | 0:66332c315595 | 1 | #include "mbed.h" |
chris | 0:66332c315595 | 2 | #include "TextLCD.h" |
chris | 0:66332c315595 | 3 | |
Leesangwoon | 1:ad907eb169ba | 4 | TextLCD lcd(PB_12, PB_13, PB_14, PB_15, PA_9, PA_10, PA_11); // rs, rw, e, d0-d3 |
chris | 0:66332c315595 | 5 | |
chris | 0:66332c315595 | 6 | int main() { |
chris | 0:66332c315595 | 7 | lcd.printf("Hello World!\n"); |
Leesangwoon | 1:ad907eb169ba | 8 | while(1); |
chris | 0:66332c315595 | 9 | } |