Created
May 10, 2026 10:06
-
-
Save jvalrog/142ecb887d134e3078d4db52a287570d to your computer and use it in GitHub Desktop.
Ikea Solskydd ESPHome controller
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| esphome: | |
| name: solskydd_29 | |
| friendly_name: Ikea Solskydd 29 | |
| min_version: 2025.11.0 | |
| name_add_mac_suffix: false | |
| esp32: | |
| variant: esp32c3 | |
| framework: | |
| type: esp-idf | |
| # Enable logging | |
| logger: | |
| # Enable Home Assistant API | |
| api: | |
| # Allow Over-The-Air updates | |
| ota: | |
| - platform: esphome | |
| wifi: | |
| ssid: !secret wifi_ssid | |
| password: !secret wifi_password | |
| output: | |
| - platform: gpio | |
| id: output_volume_down | |
| pin: | |
| number: GPIO4 | |
| inverted: True | |
| mode: | |
| output: true | |
| open_drain: true | |
| - platform: gpio | |
| id: output_volume_up | |
| pin: | |
| number: GPIO5 | |
| inverted: True | |
| mode: | |
| output: true | |
| open_drain: true | |
| - platform: gpio | |
| id: output_play_pause | |
| pin: | |
| number: GPIO6 | |
| inverted: True | |
| mode: | |
| output: true | |
| open_drain: true | |
| button: | |
| - platform: template | |
| name: "Volume Down" | |
| icon: "mdi:volume-minus" | |
| on_press: | |
| - output.turn_on: output_volume_down | |
| - delay: 200ms | |
| - output.turn_off: output_volume_down | |
| - platform: template | |
| name: "Volume Up" | |
| icon: "mdi:volume-plus" | |
| on_press: | |
| - output.turn_on: output_volume_up | |
| - delay: 200ms | |
| - output.turn_off: output_volume_up | |
| - platform: template | |
| name: "Play-Pause" | |
| icon: "mdi:play-pause" | |
| on_press: | |
| - output.turn_on: output_play_pause | |
| - delay: 200ms | |
| - output.turn_off: output_play_pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment