enabled esp8266 onDataSent

bug fix
This commit is contained in:
Timm Bogner 2022-10-08 15:58:18 -05:00
parent c23af5e348
commit 85444858ab

View File

@ -183,6 +183,7 @@ void beginFDRS() {
}
esp_now_set_self_role(ESP_NOW_ROLE_COMBO);
esp_now_register_recv_cb(OnDataRecv);
esp_now_register_send_cb(OnDataSent);
// Register peers
esp_now_add_peer(gatewayAddress, ESP_NOW_ROLE_COMBO, 0, NULL, 0);