This is a port of Henning Kralsen's UTFT library for Arduino/chipKIT to mbed, refactored to make full use of C inheritance and access control, in order to reduce work when implementing new drivers and at the same time make the code more readable and easier to maintain. As of now supported are SSD1289 (16-bit interface), HX8340-B (serial interface) and ST7735 (serial interface). Drivers for other controllers will be added as time and resources to acquire the displays to test the code permit.
Fork of TFTLCD by
Revision 28:89a1399409ff, committed 2016-02-16
- Comitter:
- DooMMasteR
- Date:
- Tue Feb 16 19:09:15 2016 +0000
- Parent:
- 27:26491d710e72
- Commit message:
- make size of the ST7735 variable, while not breaking old functionality;
Changed in this revision
st7735.cpp | Show annotated file Show diff for this revision Revisions of this file |
st7735.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r 26491d710e72 -r 89a1399409ff st7735.cpp --- a/st7735.cpp Mon Jul 22 01:48:06 2013 +0000 +++ b/st7735.cpp Tue Feb 16 19:09:15 2016 +0000 @@ -22,8 +22,8 @@ #include "st7735.h" #include "helpers.h" -ST7735_LCD::ST7735_LCD( PinName CS, PinName RESET, PinName RS, PinName SCL, PinName SDA, PinName BL, backlight_t blType, float defaultBackLightLevel ) - : LCD( 128, 160, CS, RS, RESET, BL, blType, defaultBackLightLevel ), _lcd_pin_scl( SCL ), _lcd_pin_sda( SDA ) +ST7735_LCD::ST7735_LCD( PinName CS, PinName RESET, PinName RS, PinName SCL, PinName SDA, PinName BL, backlight_t blType, float defaultBackLightLevel, int width, int height) + : LCD( width, height, CS, RS, RESET, BL, blType, defaultBackLightLevel ), _lcd_pin_scl( SCL ), _lcd_pin_sda( SDA ) { }
diff -r 26491d710e72 -r 89a1399409ff st7735.h --- a/st7735.h Mon Jul 22 01:48:06 2013 +0000 +++ b/st7735.h Tue Feb 16 19:09:15 2016 +0000 @@ -88,7 +88,7 @@ * \param blType The backlight type, the default is to utilize the pin - if supplied - as a simple on/off switch * \param defaultBacklightLevel If using PWM to control backlight, this would be the default brightness in percent after LCD initialization. */ - ST7735_LCD( PinName CS, PinName RESET, PinName RS, PinName SCL, PinName SDA, PinName BL = NC, backlight_t blType = Constant, float defaultBackLightLevel = 1.0 ); + ST7735_LCD( PinName CS, PinName RESET, PinName RS, PinName SCL, PinName SDA, PinName BL = NC, backlight_t blType = Constant, float defaultBackLightLevel = 1.0, int width = 128, int height = 160); /** Initialize display. *