Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: 02_serial_cheto_facuclop
Fork of TextLCD by
Revision 10:c9add656c693, committed 2014-08-05
- Comitter:
 - facuclop
 - Date:
 - Tue Aug 05 23:32:15 2014 +0000
 - Parent:
 - 9:befde34054fb
 - Commit message:
 - serial comunication and digitalout swiching by console or c# program with buttons to controll using kl46z board
 
Changed in this revision
| LCD.cpp | Show annotated file Show diff for this revision Revisions of this file | 
--- a/LCD.cpp	Tue May 27 07:22:43 2014 +0000
+++ b/LCD.cpp	Tue Aug 05 23:32:15 2014 +0000
@@ -1,7 +1,7 @@
 #include "LCD.h"
-DigitalOut RS(p25);
-DigitalOut E(p24);
-BusOut data(p23,p22,p21,p20);
+DigitalOut RS(PTE0);
+DigitalOut E(PTA4);
+BusOut data(PTA1,PTA2,PTD3,PTA12);
 void toggle_enable(void){
 E=1;
 wait(0.001);
    