mirror of
https://github.com/esphome/esphome.git
synced 2025-04-05 18:30:28 +01:00
Fix esp32_ble_tracker
This commit is contained in:
parent
8426084ebf
commit
17f9774418
@ -58,12 +58,11 @@ void ESP32BLETracker::setup() {
|
||||
this->scanner_idle_ = true;
|
||||
|
||||
#ifdef USE_OTA
|
||||
ota_esphome::global_ota_component->add_on_state_callback(
|
||||
[this](ota_esphome::OTAESPHomeState state, float progress, uint8_t error) {
|
||||
if (state == ota_esphome::OTA_STARTED) {
|
||||
this->stop_scan();
|
||||
}
|
||||
});
|
||||
esphome::global_ota_component->add_on_state_callback([this](ota::OTAState state, float progress, uint8_t error) {
|
||||
if (state == ota::OTA_STARTED) {
|
||||
this->stop_scan();
|
||||
}
|
||||
});
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user