| 138 | } |
| 139 | |
| 140 | void onDataReceived(void* arg, AsyncClient* client, void* data, size_t len) { |
| 141 | flasherDataHandler((uint8_t*)data, len, TRANSPORT_TCP); |
| 142 | } |
| 143 | |
| 144 | void onClientConnect(void* arg, AsyncClient* client) { |
| 145 | Serial.println("New client connected"); |
nothing calls this directly
no test coverage detected