Move add_library back to backend

This commit is contained in:
Keith Burzinski 2024-05-15 19:11:35 -05:00
parent 21deb2599a
commit 76f2508abf
No known key found for this signature in database
GPG Key ID: 802564C5F0EEFFBE
2 changed files with 7 additions and 6 deletions

View File

@ -62,12 +62,6 @@ async def to_code(config):
cg.add_define("USE_OTA_PASSWORD")
cg.add_define("USE_OTA_VERSION", config[CONF_VERSION])
if CORE.is_esp32 and CORE.using_arduino:
cg.add_library("Update", None)
if CORE.is_rp2040 and CORE.using_arduino:
cg.add_library("Updater", None)
await cg.register_component(var, config)
if config[CONF_SAFE_MODE]:

View File

@ -1,6 +1,7 @@
import esphome.codegen as cg
import esphome.config_validation as cv
from esphome import automation
from esphome.core import CORE
from esphome.const import CONF_ESPHOME, CONF_OTA, CONF_PLATFORM, CONF_TRIGGER_ID
@ -105,3 +106,9 @@ async def ota_to_code(var, config):
cg.add_define("USE_OTA_STATE_CALLBACK")
cg.add_define("USE_OTA")
if CORE.is_esp32 and CORE.using_arduino:
cg.add_library("Update", None)
if CORE.is_rp2040 and CORE.using_arduino:
cg.add_library("Updater", None)