[heatpumpir] Fix issue with IRremoteESP8266 being included on ESP32 (#9950)

This commit is contained in:
Jonathan Swoboda 2025-07-28 23:59:58 -04:00 committed by GitHub
parent f5f0a01a85
commit f733c43dec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -127,5 +127,5 @@ async def to_code(config):
cg.add(var.set_min_temperature(config[CONF_MIN_TEMPERATURE]))
cg.add_library("tonia/HeatpumpIR", "1.0.37")
if CORE.is_libretiny:
if CORE.is_libretiny or CORE.is_esp32:
CORE.add_platformio_option("lib_ignore", "IRremoteESP8266")