| 1055 | } |
| 1056 | |
| 1057 | void drawWifiSmall(int x, int y) { |
| 1058 | tft.fillRect(x, y, 16, 16, bruceConfig.bgColor); |
| 1059 | tft.fillCircle(x + 8, y + 13, 1, bruceConfig.priColor); |
| 1060 | tft.drawArc(x + 8, y + 13, 4, 6, 135, 225, bruceConfig.priColor, bruceConfig.bgColor); |
| 1061 | tft.drawArc(x + 8, y + 13, 9, 11, 135, 225, bruceConfig.priColor, bruceConfig.bgColor); |
| 1062 | } |
| 1063 | |
| 1064 | void drawWebUISmall(int x, int y) { |
| 1065 | tft.fillRect(x, y, 16, 16, bruceConfig.bgColor); |
no test coverage detected