** Function name: TouchFooter ** Description: Draw touch screen footer ***************************************************************************************/
| 157 | ** Description: Draw touch screen footer |
| 158 | ***************************************************************************************/ |
| 159 | void TouchFooter2(uint16_t color) { |
| 160 | tft->drawRoundRect(5 + RES, tftHeight + 2, tftWidth - 10 - 2 * RES, (FM * LH + 4), 5, color); |
| 161 | tft->setTextColor(color); |
| 162 | tft->setTextSize(FM); |
| 163 | tft->drawString("<<", 11 + RES, tftHeight + 4); |
| 164 | tft->drawCentreString("LAUNCHER", tftWidth / 2, tftHeight + 4, 1); |
| 165 | tft->drawRightString(">>", tftWidth - (RES + 11), tftHeight + 4, 1); |
| 166 | } |
| 167 | |
| 168 | /*************************************************************************************** |
| 169 | ** Function name: BootScreen |
no test coverage detected