mirror of
https://github.com/esphome/esphome.git
synced 2025-04-08 11:50:34 +01:00
25 lines
499 B
YAML
25 lines
499 B
YAML
zephyr_ble_server:
|
|
|
|
ota:
|
|
- platform: zephyr_mcumgr
|
|
on_begin:
|
|
then:
|
|
- logger.log: "OTA start"
|
|
on_progress:
|
|
then:
|
|
- logger.log:
|
|
format: "OTA progress %0.1f%%"
|
|
args: ["x"]
|
|
on_end:
|
|
then:
|
|
- logger.log: "OTA end"
|
|
on_error:
|
|
then:
|
|
- logger.log:
|
|
format: "OTA update error %d"
|
|
args: ["x"]
|
|
on_state_change:
|
|
then:
|
|
lambda: >-
|
|
ESP_LOGD("ota", "State %d", state);
|