Changed partition table to allow for OTA updates

This commit is contained in:
Djuri 2023-11-10 23:18:14 +01:00
parent 1d2c90fd60
commit 38efc73ca4
14 changed files with 92 additions and 13 deletions

View file

@ -118,4 +118,9 @@ bool isBlockNotifyConnected() {
if (blockNotifyClient == NULL)
return false;
return esp_websocket_client_is_connected(blockNotifyClient);
}
void stopBlockNotify() {
esp_websocket_client_stop(blockNotifyClient);
esp_websocket_client_destroy(blockNotifyClient);
}