1
0
mirror of https://github.com/esphome/esphome.git synced 2025-04-12 22:00:30 +01:00
esphome/tests/components/ota/test.nrf52-mcumgr.yaml
Tomasz Duda 20461dca75 fix ci
2024-06-22 08:27:39 +02:00

26 lines
522 B
YAML

zephyr_ble_server:
ota:
- platform: zephyr_mcumgr
hardware_uart: cdc
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);