You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to use the IRremoteESP8266 library to implement control of a daikin air conditioner. Code of which can be found here. The issue is that, when using the esp-idf framework, esphome reports missing dependency, despite installing it.
Which version of ESPHome has the issue?
2024.4.1 and 2024.4.2
What type of installation are you using?
Docker
Which version of Home Assistant has the issue?
Does not matter
What platform are you using?
ESP32
Board
Compile time issue, not even installed to hardware
Component causing the issue
library manager(?)
Example YAML snippet
esphome:
name: test-esp32friendly_name: test-esp32includes:
# Find this file at the linked repo
- include/irdaikin.hlibraries:
- crankyoldgit/IRremoteESP8266@^2.8.6esp32:
board: esp32devframework:
# Change this to arduino and it would be finetype: esp-idf# Enable logginglogger:
# Enable Home Assistant APIapi:
encryption:
key: "REDACTED"ota:
password: "REDACTED"wifi:
ssid: !secret wifi_ssidpassword: !secret wifi_passwordtime:
- platform: homeassistanttimezone: Europe/Londonid: esptimeswitch:
- platform: templatename: "AC status"id: ac_statusrestore_mode: RESTORE_DEFAULT_OFF optimistic: Truesensor:
- platform: homeassistantid: living_room_temperatureentity_id: sensor.living_room_temperatureinternal: trueclimate:
- platform: customlambda: |- auto daikinac = new DaikinAC(); daikinac->set_sensor(id(living_room_temperature)); App.register_component(daikinac); return {daikinac};climates:
- name: "AC"on_state:
- lambda: |- id(ac_status).publish_state(x.mode != CLIMATE_MODE_OFF);
The problem
I was trying to use the IRremoteESP8266 library to implement control of a daikin air conditioner. Code of which can be found here. The issue is that, when using the esp-idf framework, esphome reports missing dependency, despite installing it.
Which version of ESPHome has the issue?
2024.4.1 and 2024.4.2
What type of installation are you using?
Docker
Which version of Home Assistant has the issue?
Does not matter
What platform are you using?
ESP32
Board
Compile time issue, not even installed to hardware
Component causing the issue
library manager(?)
Example YAML snippet
Anything in the logs that might be useful for us?
Additional information
The text was updated successfully, but these errors were encountered: