Code to run the cheap 2.4" TFT made by mcufriend.com on the STM nucleo. No modifications required, this plugs into the arduino header.

Dependents:   ST7735_V2_STM32F407

Fork of TFTLCD_8bit by Thiha Electronics

Committer:
ttodorov
Date:
Tue Dec 11 18:11:14 2012 +0000
Revision:
12:d0978272a340
Parent:
10:69571adcfad5
Child:
20:4bdca8d8dadc
- integrated RGB16 and RGB18 color depth configuration/selection; - integrated HW rotation for the HX8340-B driver; - changed the bitmap drawing API; - TODO: no drawing of rotated or scaled bitmaps yet

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ttodorov 9:58b328831d0a 1 /** \file st7735.h
ttodorov 9:58b328831d0a 2 * \brief mbed TFT LCD controller for displays with the ST7735 IC.
ttodorov 9:58b328831d0a 3 * \copyright GNU Public License, v2. or later
ttodorov 9:58b328831d0a 4 *
ttodorov 9:58b328831d0a 5 * A known display with this type of controller chip is the ITDB02-1.8SP
ttodorov 9:58b328831d0a 6 * from http://imall.iteadstudio.com
ttodorov 9:58b328831d0a 7 *
ttodorov 9:58b328831d0a 8 * This library is based on the Arduino/chipKIT UTFT library by Henning
ttodorov 9:58b328831d0a 9 * Karlsen, http://henningkarlsen.com/electronics/library.php?id=52
ttodorov 9:58b328831d0a 10 *
ttodorov 9:58b328831d0a 11 * Copyright (C)2010-2012 Henning Karlsen. All right reserved.
ttodorov 9:58b328831d0a 12 *
ttodorov 9:58b328831d0a 13 * Copyright (C)2012 Todor Todorov.
ttodorov 9:58b328831d0a 14 *
ttodorov 9:58b328831d0a 15 * This library is free software; you can redistribute it and/or
ttodorov 9:58b328831d0a 16 * modify it under the terms of the GNU Lesser General Public
ttodorov 9:58b328831d0a 17 * License as published by the Free Software Foundation; either
ttodorov 9:58b328831d0a 18 * version 2.1 of the License, or (at your option) any later version.
ttodorov 9:58b328831d0a 19 *
ttodorov 9:58b328831d0a 20 * This library is distributed in the hope that it will be useful,
ttodorov 9:58b328831d0a 21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
ttodorov 9:58b328831d0a 22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
ttodorov 9:58b328831d0a 23 * Lesser General Public License for more details.
ttodorov 9:58b328831d0a 24 *
ttodorov 9:58b328831d0a 25 * You should have received a copy of the GNU Lesser General Public
ttodorov 9:58b328831d0a 26 * License along with this library; if not, write to:
ttodorov 9:58b328831d0a 27 *
ttodorov 9:58b328831d0a 28 * Free Software Foundation, Inc.
ttodorov 9:58b328831d0a 29 * 51 Franklin St, 5th Floor, Boston, MA 02110-1301, USA
ttodorov 9:58b328831d0a 30 *
ttodorov 9:58b328831d0a 31 *********************************************************************/
ttodorov 9:58b328831d0a 32 #ifndef TFTLCD_ST7735_H
ttodorov 9:58b328831d0a 33 #define TFTLCD_ST7735_H
ttodorov 9:58b328831d0a 34
ttodorov 9:58b328831d0a 35 #include "lcd_base.h"
ttodorov 9:58b328831d0a 36
ttodorov 9:58b328831d0a 37 #ifdef __cplusplus
ttodorov 9:58b328831d0a 38 extern "C" {
ttodorov 9:58b328831d0a 39 #endif
ttodorov 9:58b328831d0a 40
ttodorov 9:58b328831d0a 41 /** Represents a LCD instance.
ttodorov 9:58b328831d0a 42 *
ttodorov 9:58b328831d0a 43 * This is the utility class, through which the display can be manipulated
ttodorov 9:58b328831d0a 44 * and graphics objects can be shown to the user. A known display, which
ttodorov 9:58b328831d0a 45 * works with this library is the ITDB02-1.8SP from iTeadStudio - a RGB TFT
ttodorov 9:58b328831d0a 46 * with 128x160 pixels resolution and 262K colors, using serail interface.
ttodorov 9:58b328831d0a 47 *
ttodorov 9:58b328831d0a 48 * The display needs 5 or 6 pins to work with mbed, uses +3.3V for backlight,
ttodorov 9:58b328831d0a 49 * power and logic, thus can be interfaced directly to the mbed kit without
ttodorov 9:58b328831d0a 50 * the need of shields or level shifters as with Arduino.
ttodorov 9:58b328831d0a 51 *
ttodorov 9:58b328831d0a 52 * How to use:
ttodorov 9:58b328831d0a 53 * \code
ttodorov 9:58b328831d0a 54 * // include the library, this will also pull in the header for the provided fonts
ttodorov 9:58b328831d0a 55 * #include "st7735.h"
ttodorov 9:58b328831d0a 56 *
ttodorov 9:58b328831d0a 57 * // create the lcd instance
ttodorov 9:58b328831d0a 58 * ST7735_LCD lcd( p14, p13, p12, p11, p10 ); // control pins
ttodorov 9:58b328831d0a 59 *
ttodorov 9:58b328831d0a 60 * int main()
ttodorov 9:58b328831d0a 61 * {
ttodorov 9:58b328831d0a 62 * // initialize display - place it in standard portrait mode and set background to black and
ttodorov 9:58b328831d0a 63 * // foreground to white color.
ttodorov 9:58b328831d0a 64 * lcd.Initialize();
ttodorov 9:58b328831d0a 65 * // set current font to the smallest 8x12 pixels font.
ttodorov 9:58b328831d0a 66 * lcd.SetFont( Font8x12 );
ttodorov 9:58b328831d0a 67 * // print something on the screen
ttodorov 9:58b328831d0a 68 * lcd.Print( "Hello, World!", CENTER, 25 ); // align text to center horizontally and use starndard colors
ttodorov 9:58b328831d0a 69 *
ttodorov 9:58b328831d0a 70 * while ( 1 ) { }
ttodorov 9:58b328831d0a 71 * }
ttodorov 9:58b328831d0a 72 *
ttodorov 9:58b328831d0a 73 * \endcode
ttodorov 9:58b328831d0a 74 * \version 0.1
ttodorov 9:58b328831d0a 75 * \author Todor Todorov
ttodorov 9:58b328831d0a 76 */
ttodorov 9:58b328831d0a 77 class ST7735_LCD : public LCD
ttodorov 9:58b328831d0a 78 {
ttodorov 9:58b328831d0a 79 public:
ttodorov 9:58b328831d0a 80 /** Creates a new instance of the class.
ttodorov 9:58b328831d0a 81 *
ttodorov 9:58b328831d0a 82 * \param CS Pin for the ChipSelect signal.
ttodorov 9:58b328831d0a 83 * \param RESET Pin for the RESET line.
ttodorov 9:58b328831d0a 84 * \param RS Pin for the RS signal.
ttodorov 9:58b328831d0a 85 * \param SCL Pin for the serial clock line.
ttodorov 9:58b328831d0a 86 * \param SDA Pin for the serial data line.
ttodorov 9:58b328831d0a 87 * \param BL Pin for controlling the backlight. By default not used.
ttodorov 9:58b328831d0a 88 */
ttodorov 9:58b328831d0a 89 ST7735_LCD( PinName CS, PinName RESET, PinName RS, PinName SCL, PinName SDA, PinName BL = NC );
ttodorov 9:58b328831d0a 90
ttodorov 9:58b328831d0a 91 /** Initialize display.
ttodorov 9:58b328831d0a 92 *
ttodorov 9:58b328831d0a 93 * Wakes up the display from sleep, initializes power parameters.
ttodorov 9:58b328831d0a 94 * This function must be called first, befor any painting on the
ttodorov 9:58b328831d0a 95 * display is done, otherwise the positioning of graphical elements
ttodorov 9:58b328831d0a 96 * will not work properly and any paynt operation will not be visible
ttodorov 9:58b328831d0a 97 * or produce garbage.
ttodorov 9:58b328831d0a 98 *
ttodorov 9:58b328831d0a 99 * \param oritentation The display orientation, landscape is default.
ttodorov 12:d0978272a340 100 * \param colors The correct color depth to use for the pixel data.
ttodorov 9:58b328831d0a 101 */
ttodorov 12:d0978272a340 102 virtual void Initialize( orientation_t orientation = LANDSCAPE, colordepth_t colors = RGB16 );
ttodorov 9:58b328831d0a 103
ttodorov 9:58b328831d0a 104 /** Puts the display to sleep.
ttodorov 9:58b328831d0a 105 *
ttodorov 9:58b328831d0a 106 * When the display is in sleep mode, its power consumption is
ttodorov 9:58b328831d0a 107 * minimized. Before new pixel data can be written to the display
ttodorov 9:58b328831d0a 108 * memory, the controller needs to be brought out of sleep mode.
ttodorov 9:58b328831d0a 109 * \sa #WakeUp( void );
ttodorov 9:58b328831d0a 110 * \remarks The result of this operation might not be exactly as
ttodorov 9:58b328831d0a 111 * expected. Putting the display to sleep will cause the
ttodorov 9:58b328831d0a 112 * controller to switch to the standard color of the LCD,
ttodorov 9:58b328831d0a 113 * so depending on whether the display is normally white,
ttodorov 9:58b328831d0a 114 * or normally dark, the screen might or might not go
ttodorov 9:58b328831d0a 115 * dark. Additional power saving can be achieved, if
ttodorov 9:58b328831d0a 116 * the backlight of the used display is not hardwired on
ttodorov 9:58b328831d0a 117 * the PCB and can be controlled via the BL pin.
ttodorov 9:58b328831d0a 118 */
ttodorov 9:58b328831d0a 119 virtual void Sleep( void );
ttodorov 9:58b328831d0a 120
ttodorov 9:58b328831d0a 121 /** Wakes up the display from sleep mode.
ttodorov 9:58b328831d0a 122 *
ttodorov 9:58b328831d0a 123 * This function needs to be called before any other, when the
ttodorov 9:58b328831d0a 124 * display has been put into sleep mode by a previois call to
ttodorov 9:58b328831d0a 125 * #Sleep( void ).
ttodorov 9:58b328831d0a 126 */
ttodorov 9:58b328831d0a 127 virtual void WakeUp( void );
ttodorov 9:58b328831d0a 128
ttodorov 9:58b328831d0a 129 protected:
ttodorov 9:58b328831d0a 130 /** Sends a command to the display.
ttodorov 9:58b328831d0a 131 *
ttodorov 9:58b328831d0a 132 * \param cmd The display command.
ttodorov 9:58b328831d0a 133 * \remarks Commands are controller-specific and this function needs to
ttodorov 9:58b328831d0a 134 * be implemented separately for each available controller.
ttodorov 9:58b328831d0a 135 */
ttodorov 9:58b328831d0a 136 virtual void WriteCmd( unsigned short cmd );
ttodorov 9:58b328831d0a 137
ttodorov 9:58b328831d0a 138 /** Sends pixel data to the display.
ttodorov 9:58b328831d0a 139 *
ttodorov 9:58b328831d0a 140 * \param data The display data.
ttodorov 9:58b328831d0a 141 * \remarks Sendin data is controller-specific and this function needs to
ttodorov 9:58b328831d0a 142 * be implemented separately for each available controller.
ttodorov 9:58b328831d0a 143 */
ttodorov 9:58b328831d0a 144 virtual void WriteData( unsigned short data );
ttodorov 9:58b328831d0a 145
ttodorov 9:58b328831d0a 146 /** Writes a single byte of pixel data to the display.
ttodorov 9:58b328831d0a 147 *
ttodorov 9:58b328831d0a 148 * \param data The data to be written.
ttodorov 9:58b328831d0a 149 * \remarks Sendin data is controller-specific and this function needs to
ttodorov 9:58b328831d0a 150 * be implemented separately for each available controller.
ttodorov 9:58b328831d0a 151 */
ttodorov 9:58b328831d0a 152 virtual void WriteByteData( unsigned char data );
ttodorov 9:58b328831d0a 153
ttodorov 9:58b328831d0a 154 /** Assigns a chunk of the display memory to receive data.
ttodorov 9:58b328831d0a 155 *
ttodorov 9:58b328831d0a 156 * When data is sent to the display after this function completes, the opertion will
ttodorov 9:58b328831d0a 157 * start from the begining of the assigned address (pixel position) and the pointer
ttodorov 9:58b328831d0a 158 * will be automatically incremented so that the next data write operation will continue
ttodorov 9:58b328831d0a 159 * with the next pixel from the memory block. If more data is written than available
ttodorov 9:58b328831d0a 160 * pixels, at the end of the block the pointer will jump back to its beginning and
ttodorov 9:58b328831d0a 161 * commence again, until the next address change command is sent to the display.
ttodorov 9:58b328831d0a 162 *
ttodorov 9:58b328831d0a 163 * \param x1 The X coordinate of the pixel at the beginning of the block.
ttodorov 9:58b328831d0a 164 * \param y1 The Y coordinate of the pixel at the beginning of the block.
ttodorov 9:58b328831d0a 165 * \param x2 The X coordinate of the pixel at the end of the block.
ttodorov 9:58b328831d0a 166 * \param y2 The Y coordinate of the pixel at the end of the block.
ttodorov 9:58b328831d0a 167 * \remarks Addressing commands are controller-specific and this function needs to be
ttodorov 9:58b328831d0a 168 * implemented separately for each available controller.
ttodorov 9:58b328831d0a 169 */
ttodorov 9:58b328831d0a 170 virtual void SetXY( uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2 );
ttodorov 9:58b328831d0a 171
ttodorov 10:69571adcfad5 172 /** Sets the color of the pixel at the address pointer of the controller.
ttodorov 10:69571adcfad5 173 *
ttodorov 10:69571adcfad5 174 * This function is to be provided by each implementation separately in
ttodorov 10:69571adcfad5 175 * order to account for different color depth used by the controller.
ttodorov 10:69571adcfad5 176 * \param color The color of the pixel.
ttodorov 10:69571adcfad5 177 */
ttodorov 12:d0978272a340 178 virtual void SetPixelColor( unsigned int color );
ttodorov 10:69571adcfad5 179
ttodorov 9:58b328831d0a 180 private:
ttodorov 9:58b328831d0a 181 void serializeByte( unsigned char data );
ttodorov 9:58b328831d0a 182
ttodorov 9:58b328831d0a 183 private:
ttodorov 9:58b328831d0a 184 DigitalOut _lcd_pin_scl, _lcd_pin_sda;
ttodorov 9:58b328831d0a 185 DigitalOut* _lcd_pin_bl;
ttodorov 9:58b328831d0a 186 };
ttodorov 9:58b328831d0a 187
ttodorov 9:58b328831d0a 188 #ifdef __cplusplus
ttodorov 9:58b328831d0a 189 }
ttodorov 9:58b328831d0a 190 #endif
ttodorov 9:58b328831d0a 191
ttodorov 9:58b328831d0a 192 #endif /* TFTLCD_ST7735_H */