1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-02 19:32:19 +01:00

[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

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")