LCD by TIAM

Fork of LCD4884 by Dan Ghiciulescu

Files at this revision

API Documentation at this revision

Comitter:
kra_tiam
Date:
Wed Dec 09 03:54:48 2015 +0000
Parent:
0:28f3c9274ea7
Commit message:
LCD by TIAM

Changed in this revision

LCD4884.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r 28f3c9274ea7 -r 3621dd5b686f LCD4884.cpp
--- a/LCD4884.cpp	Sat Mar 09 21:07:35 2013 +0000
+++ b/LCD4884.cpp	Wed Dec 09 03:54:48 2015 +0000
@@ -14,12 +14,12 @@
 #include "font_6x8.h"
 #include "font_big.h"
 
-DigitalOut SpiClk(SPI_SCK);    //2- Serial Clock(Master Output)
-DigitalOut SpiMosi(SPI_MOSI);  //3- Master Output,Slave Input
-DigitalOut LcdDC(LCD_DC);      //4- Data/Command(command active low)
-DigitalOut SpiCS(SPI_CS);      //5- Chip Select,Slave Transmit Enable(active low,Master Output)
-DigitalOut LcdRst(LCD_RST);    //6- One Reset button
-PwmOut     LcdBl(LCD_BL);      //7- LCD backlight
+DigitalOut SpiClk(D2);    //2- Serial Clock(Master Output)
+DigitalOut SpiMosi(D3);  //3- Master Output,Slave Input
+DigitalOut LcdDC(D4);      //4- Data/Command(command active low)
+DigitalOut SpiCS(D5);      //5- Chip Select,Slave Transmit Enable(active low,Master Output)
+DigitalOut LcdRst(D6);    //6- One Reset button
+PwmOut     LcdBl(D7);      //7- LCD backlight
 
 LCD4884::LCD4884()
 {};