Forked from TFTLCD_8bit by Thiha Electronics
Dependents: GR-PEACH_TFTLCD_8bit
Fork of TFTLCD_8bit by
Diff: st7735.h
- Revision:
- 20:4bdca8d8dadc
- Parent:
- 12:d0978272a340
- Child:
- 22:4c169297f374
--- a/st7735.h Thu Dec 13 03:37:22 2012 +0000 +++ b/st7735.h Fri Dec 21 06:05:15 2012 +0000 @@ -167,15 +167,16 @@ * \remarks Addressing commands are controller-specific and this function needs to be * implemented separately for each available controller. */ - virtual void SetXY( uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2 ); + virtual void SetXY( unsigned short x1, unsigned short y1, unsigned short x2, unsigned short y2 ); /** Sets the color of the pixel at the address pointer of the controller. * * This function is to be provided by each implementation separately in * order to account for different color depth used by the controller. * \param color The color of the pixel. + * \param mode The depth (palette) of the color. */ - virtual void SetPixelColor( unsigned int color ); + virtual void SetPixelColor( unsigned int color, colordepth_t mode = RGB24 ); private: void serializeByte( unsigned char data );