| 1062 | } |
| 1063 | |
| 1064 | void drawWebUISmall(int x, int y) { |
| 1065 | tft.fillRect(x, y, 16, 16, bruceConfig.bgColor); |
| 1066 | tft.drawCircle(x + 8, y + 8, 6, bruceConfig.priColor); |
| 1067 | tft.drawLine(x + 3, y + 4, x + 13, y + 4, bruceConfig.priColor); |
| 1068 | tft.drawLine(x + 2, y + 8, x + 14, y + 8, bruceConfig.priColor); |
| 1069 | tft.drawLine(x + 3, y + 12, x + 13, y + 12, bruceConfig.priColor); |
| 1070 | } |
| 1071 | |
| 1072 | void drawBLESmall(int x, int y) { |
| 1073 | tft.fillRect(x, y, 16, 16, bruceConfig.bgColor); |
no test coverage detected