forked from jesserockz/athom-configs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
athom-sw03.yaml
167 lines (149 loc) · 3.28 KB
/
athom-sw03.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
substitutions:
device_name: "athom-sw03"
friendly_name: "Athom SW03"
project_name: "athom.sw03"
project_version: "1.0"
esphome:
name: "${device_name}"
name_add_mac_suffix: true
platform: ESP8266
board: esp8285
project:
name: "${project_name}"
version: "${project_version}"
api:
ota:
logger:
baud_rate: 0
web_server:
port: 80
wifi:
ap: {} # This spawns an AP with the device name and mac address with no password.
captive_portal:
binary_sensor:
- platform: status
name: "${friendly_name} Status"
# Touch Buttons
- platform: gpio
pin:
inverted: true
number: GPIO12
name: "${friendly_name} Button 1"
disabled_by_default: true
on_multi_click:
- timing:
- ON for at most 0.5s
- OFF for at least 0.2s
then:
- light.toggle: light1
- timing:
- ON for at least 4s
then:
- switch.turn_on: restart_switch
- platform: gpio
pin:
inverted: true
number: GPIO3
name: "${friendly_name} Button 2"
disabled_by_default: true
on_click:
max_length: 0.5s
then:
- light.toggle: light2
- platform: gpio
pin:
inverted: true
number: GPIO5
name: "${friendly_name} Button 3"
disabled_by_default: true
on_click:
max_length: 0.5s
then:
- light.toggle: light3
sensor:
- platform: uptime
name: "${friendly_name} Uptime Sensor"
switch:
- platform: restart
id: restart_switch
name: "${friendly_name} Restart"
output:
# Relays
- platform: gpio
pin: GPIO13
id: relay1
- platform: gpio
pin: GPIO4
id: relay2
- platform: gpio
pin: GPIO15
id: relay3
# Button LEDs (1.0 = Blue / 0.0 = Red)
- platform: esp8266_pwm
pin: GPIO16
inverted: true
id: button_led1
- platform: esp8266_pwm
pin: GPIO14
inverted: true
id: button_led2
- platform: esp8266_pwm
pin: GPIO1
inverted: true
id: button_led3
light:
- platform: status_led
name: "${friendly_name} Wifi LED"
disabled_by_default: true
pin:
number: GPIO0
inverted: true
# Relays
- platform: binary
name: "${friendly_name} Light 1"
id: light1
output: relay1
on_turn_on:
- light.turn_on: led1
on_turn_off:
- light.turn_off: led1
- platform: binary
name: "${friendly_name} Light 2"
id: light2
output: relay2
on_turn_on:
- light.turn_on: led2
on_turn_off:
- light.turn_off: led2
- platform: binary
name: "${friendly_name} Light 3"
id: light3
output: relay3
on_turn_on:
- light.turn_on: led3
on_turn_off:
- light.turn_off: led3
# Button LEDs
- platform: monochromatic
name: "${friendly_name} LED1"
disabled_by_default: true
id: led1
output: button_led1
default_transition_length: 500ms
- platform: monochromatic
name: "${friendly_name} LED2"
disabled_by_default: true
id: led2
output: button_led2
default_transition_length: 500ms
- platform: monochromatic
name: "${friendly_name} LED3"
disabled_by_default: true
id: led3
output: button_led3
default_transition_length: 500ms
text_sensor:
- platform: wifi_info
ip_address:
name: "${friendly_name} IP Address"
disabled_by_default: true