From 8d2837e060b08abd02064423f81494b3f10f158a Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Fri, 21 Aug 2020 07:27:10 +1200 Subject: [PATCH] Change example ota id as "ota" conflicts with the name of an esphome integration (#737) --- components/ota.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/ota.rst b/components/ota.rst index 0e8cb0b9f..a9ea69450 100644 --- a/components/ota.rst +++ b/components/ota.rst @@ -55,10 +55,10 @@ through an ``on_boot`` trigger: esphome: on_boot: - lambda: |- - id(ota).set_auth_password("New password"); + id(my_ota).set_auth_password("New password"); ota: password: "Old password" - id: ota + id: my_ota See Also --------