This will help u too interface lcd using lpc1768
Revision 0:8f5f15005811, committed 2019-01-18
- Comitter:
- DeepuDPriean
- Date:
- Fri Jan 18 06:34:15 2019 +0000
- Commit message:
- LCD Text Interfacing;
Changed in this revision
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/TextLCD.lib Fri Jan 18 06:34:15 2019 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/simon/code/TextLCD/#308d188a2d3a
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Fri Jan 18 06:34:15 2019 +0000
@@ -0,0 +1,9 @@
+#include "mbed.h"
+#include "TextLCD.h"
+
+TextLCD lcd(p15, p16, p17, p18, p19, p20);
+
+int main()
+{
+ lcd.printf("Deepu\n");
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Fri Jan 18 06:34:15 2019 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/mbed_official/code/mbed/builds/3a7713b1edbc \ No newline at end of file
Deepa Priean