| 40 | uint32_t lastssidscan = 0; |
| 41 | |
| 42 | void wsLog(const String &text) { |
| 43 | JsonDocument doc; |
| 44 | doc["logMsg"] = text; |
| 45 | if (wsMutex) xSemaphoreTake(wsMutex, portMAX_DELAY); |
| 46 | ws.textAll(doc.as<String>()); |
| 47 | if (wsMutex) xSemaphoreGive(wsMutex); |
| 48 | } |
| 49 | |
| 50 | void wsErr(const String &text) { |
| 51 | JsonDocument doc; |
no outgoing calls
no test coverage detected