-
Notifications
You must be signed in to change notification settings - Fork 13
/
electrolux-ac-esp8266.yaml
58 lines (53 loc) · 2.23 KB
/
electrolux-ac-esp8266.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
substitutions:
name: cabinet-ac
friendly_name: Cabinet Climate
# HomeAssistant sensor for use as FollowMe temperature source (must be uncommented package option, see below)
#follow_me_sensor: sensor.bedroom_temperature
# Wi-Fi AP password in safe mode. Default: "12345678"
#ap_password: !secret ap_password
# Network domain. Default: .local
#domain: !secret domain
# HomeAssistant API key. Default: sOsBobs9D/bNFOBZ5GFr+TuHdMbYMntmDNXt5F/3lk0=
#api_key: !secret api_key
# OTA firmware update password. Default: no password
#ota_password: !secret ota_password
wifi:
# Your SSID name. Must be located in 'secrets.yaml' file.
ssid: !secret wifi_ssid
# Your SSID password. Must be located in 'secrets.yaml' file.
password: !secret wifi_password
# Uncomment on the first firmware update.
#use_address: iot-uni-dongle.local
esphome:
project:
name: "dudanov.midea-ac-control"
version: "1.0"
packages:
remote_package:
url: https://github.com/dudanov/esphome-packages
refresh: 0d
files: [
# Main dongle package
hardware/iot-uni-dongle/device.yaml,
# IR remote transmitter (IR- pad connected to TSOP output of controlled device)
hardware/iot-uni-dongle/remote/tsop.yaml,
# IR remote transmitter (IR LED between IR+ and IR- pads)
#hardware/iot-uni-dongle/remote/led.yaml,
# Electrolux EACS. Select your model HERE.
climate/midea/electrolux.yaml,
# "Flash" button. Run `button_click` script on click.
hardware/iot-uni-dongle/button.yaml,
# Toggles power on button click.
climate/midea/common/button_action/power.yaml,
# "Beeper feedback" switch
climate/midea/common/beeper.yaml,
# "Display toggle" button. Works only via IR transmitter for Electrolux EACS.
climate/midea/common/display.yaml,
# "Swing step" button. Works only via IR transmitter.
climate/midea/common/swing.yaml,
# "FollowMe" capability via HomeAssistant service.
climate/midea/common/follow_me/service.yaml,
# "FollowMe" capability via HomeAssistant sensor.
# Sensor entity name setting up via ${follow_me_sensor} substitution.
#climate/midea/common/follow_me/sensor.yaml,
]