mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
Fix ESP8266 OTA adds unnecessary Update library (#2579)
This commit is contained in:
parent
f41f7994a3
commit
1caabb6419
1 changed files with 1 additions and 3 deletions
|
@ -90,9 +90,7 @@ async def to_code(config):
|
||||||
)
|
)
|
||||||
cg.add(RawExpression(f"if ({condition}) return"))
|
cg.add(RawExpression(f"if ({condition}) return"))
|
||||||
|
|
||||||
if CORE.is_esp8266:
|
if CORE.is_esp32 and CORE.using_arduino:
|
||||||
cg.add_library("Update", None)
|
|
||||||
elif CORE.is_esp32 and CORE.using_arduino:
|
|
||||||
cg.add_library("Update", None)
|
cg.add_library("Update", None)
|
||||||
|
|
||||||
use_state_callback = False
|
use_state_callback = False
|
||||||
|
|
Loading…
Reference in a new issue