1
0
mirror of https://github.com/esphome/esphome.git synced 2025-04-06 10:50:28 +01:00

fix tests

This commit is contained in:
Tomasz Duda 2024-05-08 20:52:01 +02:00
parent 3512e255cf
commit 8b9e01d123

View File

@ -1,26 +1,22 @@
zephyr_ble_server:
ota: ota:
safe_mode: true - platform: zephyr_mcumgr
reboot_timeout: 2min on_begin:
num_attempts: 5 then:
on_begin: - logger.log: "OTA start"
then: on_progress:
- logger.log: "OTA start" then:
on_progress: - logger.log:
then: format: "OTA progress %0.1f%%"
- logger.log: args: ["x"]
format: "OTA progress %0.1f%%" on_end:
args: ["x"] then:
on_end: - logger.log: "OTA end"
then: on_error:
- logger.log: "OTA end" then:
on_error: - logger.log:
then: format: "OTA update error %d"
- logger.log: args: ["x"]
format: "OTA update error %d" on_state_change:
args: ["x"] then:
on_state_change: lambda: >-
then: ESP_LOGD("ota", "State %d", state);
lambda: >-
ESP_LOGD("ota", "State %d", state);