Suad Suljic
/
LCD
h
Revision 0:7376fc7a774b, committed 2018-02-01
- Comitter:
- suads
- Date:
- Thu Feb 01 10:56:13 2018 +0000
- Commit message:
- first commit
Changed in this revision
diff -r 000000000000 -r 7376fc7a774b TextLCD.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/TextLCD.lib Thu Feb 01 10:56:13 2018 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/simon/code/TextLCD/#308d188a2d3a
diff -r 000000000000 -r 7376fc7a774b main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Thu Feb 01 10:56:13 2018 +0000 @@ -0,0 +1,17 @@ +// Hello World! for the TextLCD + +#include "mbed.h" +#include "TextLCD.h" + +TextLCD lcd(D2, D3, D4, D5, D6, D7); // rs, e, d4-d7 + +int main() { + lcd.printf("Hello GRGA!\n"); + wait(3); + //lcd.cls(); + lcd.locate(0,0); + lcd.printf("Whats Up"); + lcd.cls(); + wait(3); + +}
diff -r 000000000000 -r 7376fc7a774b mbed.bld --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Thu Feb 01 10:56:13 2018 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/mbed_official/code/mbed/builds/7130f322cb7e \ No newline at end of file