{"id":30057148,"url":"https://github.com/sys27/esphome-electrolux-ac","last_synced_at":"2026-04-18T17:33:24.373Z","repository":{"id":304892612,"uuid":"1020450582","full_name":"sys27/esphome-electrolux-ac","owner":"sys27","description":"ESPHome external component to control Electrolux AC","archived":false,"fork":false,"pushed_at":"2025-09-02T13:29:08.000Z","size":27,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-02T15:29:11.982Z","etag":null,"topics":["climate-control","electrolux","esp32","esphome","home-assistant","homeassistant","ir-remote"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sys27.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"patreon":"DmytroKyshchenko"}},"created_at":"2025-07-15T22:25:48.000Z","updated_at":"2025-09-02T13:29:11.000Z","dependencies_parsed_at":"2025-12-27T06:09:56.354Z","dependency_job_id":null,"html_url":"https://github.com/sys27/esphome-electrolux-ac","commit_stats":null,"previous_names":["sys27/esphome-electrolux-ac"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sys27/esphome-electrolux-ac","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sys27%2Fesphome-electrolux-ac","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sys27%2Fesphome-electrolux-ac/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sys27%2Fesphome-electrolux-ac/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sys27%2Fesphome-electrolux-ac/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sys27","download_url":"https://codeload.github.com/sys27/esphome-electrolux-ac/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sys27%2Fesphome-electrolux-ac/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31977996,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T17:30:12.329Z","status":"ssl_error","status_checked_at":"2026-04-18T17:29:59.069Z","response_time":103,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["climate-control","electrolux","esp32","esphome","home-assistant","homeassistant","ir-remote"],"created_at":"2025-08-07T23:53:16.863Z","updated_at":"2026-04-18T17:33:24.367Z","avatar_url":"https://github.com/sys27.png","language":"C++","funding_links":["https://patreon.com/DmytroKyshchenko"],"categories":[],"sub_categories":[],"readme":"# ESPHome Electrolux AC\n\nThis repository contains an external component that controls the Electrolux AC using IR.\n\n## Supported Models\n\n- EXP26U339HW (tested)\n- EXP26U339CW (the same model as the previous one, but without the HEAT mode, you can disable HEAT in `yaml`)\n- EXP34U339HW (untested but should work)\n\n_If you tested any other model and it works for you, please create a ticket, so I can update this list._\n\n## Usage\n\n```yaml\nexternal_components:\n  - source:\n      type: git\n      url: https://github.com/sys27/esphome-electrolux-ac\n      ref: master\n    components: [electrolux_ac]\n\nremote_transmitter:\n  pin: GPIOXX\n  carrier_duty_percent: 50%\n\nclimate:\n  - platform: electrolux_ac\n    name: \"Electrolux AC\"\n```\n\nReplace `GPIOXX` with the correct pin on your device where IR Transmitter is connected.\n\n## Electrolux Protocol\n\nFor `EXP26U339HW`:\n\n| Offset | Size | Meaning               | Value                                                              |\n| ------ | ---- | --------------------- | ------------------------------------------------------------------ |\n| 0      | 8    | Constant Header       | `11000011`                                                         |\n| 8      | 3    | Swing                 | Off - `111`, On - `000`                                            |\n| 11     | 5    | Temperature (C)       | Calculated as `\u003cexpected_temp\u003e - 8`                                |\n| 16     | 16   | Unused                |                                                                    |\n| 32     | 5    | Timer (unused)        | Probably hours                                                     |\n| 37     | 3    | Fan Speed             | Auto - `101`, Low - `011`, Mid - `010`, High - `001`               |\n| 40     | 5    | Timer (unused)        | Probably minutes                                                   |\n| 46     | 4    | Unused                |                                                                    |\n| 50     | 1    | Sleep (unused)        | On - `1`, Off - `0`                                                |\n| 51     | 2    | Unused                |                                                                    |\n| 53     | 3    | Mode                  | Auto - `000`, Cool - `001`, Fan - `110`, Heat - `100`, Dry - `010` |\n| 56     | 21   | Unused                |                                                                    |\n| 77     | 1    | On/Off                | On - `1`, Off - `0`                                                |\n| 78     | 1    | Timer On/Off (unused) | On - `1`, Off - `0`                                                |\n| 79     | 9    | Unused                |                                                                    |\n| 88     | 4    | Buttons (unused)      |                                                                    |\n| 92     | 4    | Unused                |                                                                    |\n| 96     | 8    | Checksum              | Truncated sum of all previous bytes                                |\n\n_Note: all bits are stored in the reverse order, for example, the `High` fan speed is `001`, but it will be `100` in the packet._\n\n## Run locally / Contribute\n\n- checkout/download the repository\n- copy the `components` folder alongside your ESPHome configuration\n\nExpected Folder Structure:\n\n- esp32.yaml\n- secrets.yaml\n- components\n  - electrolux_ac\n    - \\_\\_init\\_\\_.py\n    - climate.py\n    - electrolux_ac_component.cpp\n    - electrolux_ac_component.h\n\nAfter that, you need to update your configuration to use the local version instead of `git`:\n\n```yaml\nexternal_components:\n  - source:\n      type: local\n      path: components\n    components: [electrolux_ac]\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsys27%2Fesphome-electrolux-ac","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsys27%2Fesphome-electrolux-ac","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsys27%2Fesphome-electrolux-ac/lists"}