| 97 | uint8_t errors = 0; |
| 98 | |
| 99 | void infoDisplay(String actionName, uint8_t icon) { |
| 100 | wsSerial(" " + actionName, "white"); |
| 101 | #ifdef HAS_TFT |
| 102 | tftOverride = true; |
| 103 | tft2.fillScreen(TFT_PURPLE); |
| 104 | tft2.setCursor(0, 0, 4); |
| 105 | tft2.setTextColor(TFT_WHITE); |
| 106 | tft2.print("Progress:"); |
| 107 | tft2.setCursor(18, 30, 2); |
| 108 | tft2.setTextColor(TFT_WHITE); |
| 109 | tft2.print(actionName); |
| 110 | #endif |
| 111 | } |
| 112 | |
| 113 | bool report(bool result) { |
| 114 | if (result) { |
no test coverage detected