-
Notifications
You must be signed in to change notification settings - Fork 0
/
powerstrip.yaml
162 lines (148 loc) · 3.22 KB
/
powerstrip.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
substitutions:
board: "esp01_1m"
device_name: "powerstrip"
friendly_name: "Powerstrip"
esphome:
name: ${device_name}
platform: "ESP8266"
board: ${board}
time:
- platform: sntp
id: sntp_time
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
fast_connect: on
reboot_timeout: 0s
power_save_mode: high
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "${name} Fallback Hotspot"
password: !secret fallback_password
captive_portal:
# Enable web server
web_server:
port: 80
auth:
username: !secret web_server_user
password: !secret web_server_password
# Enable logging
logger:
# Enable Home Assistant API
api:
encryption:
key: !secret hass_key
ota:
platform: esphome
password: !secret ota_password
switch:
- platform: gpio
name: "PS1"
icon: mdi:power-socket-au
id: relay1
pin:
number: GPIO4
inverted: True
restore_mode: RESTORE_DEFAULT_OFF
on_turn_on:
- switch.turn_on: red_led
on_turn_off:
- if:
condition:
and:
- switch.is_off: relay2
- switch.is_off: relay3
- switch.is_off: relay4
then:
- switch.turn_off: red_led
- platform: gpio
name: "PS2"
icon: mdi:power-socket-au
id: relay2
pin:
number: GPIO13
inverted: True
restore_mode: RESTORE_DEFAULT_OFF
on_turn_on:
- switch.turn_on: red_led
on_turn_off:
- if:
condition:
and:
- switch.is_off: relay1
- switch.is_off: relay3
- switch.is_off: relay4
then:
- switch.turn_off: red_led
- platform: gpio
name: "PS3"
icon: mdi:power-socket-au
id: relay3
pin:
number: GPIO12
inverted: True
restore_mode: RESTORE_DEFAULT_OFF
on_turn_on:
- switch.turn_on: red_led
on_turn_off:
- if:
condition:
and:
- switch.is_off: relay1
- switch.is_off: relay2
- switch.is_off: relay4
then:
- switch.turn_off: red_led
- platform: gpio
name: "PS4"
icon: mdi:power-socket-au
id: relay4
pin:
number: GPIO14
inverted: True
restore_mode: RESTORE_DEFAULT_OFF
on_turn_on:
- switch.turn_on: red_led
on_turn_off:
- if:
condition:
and:
- switch.is_off: relay1
- switch.is_off: relay2
- switch.is_off: relay3
then:
- switch.turn_off: red_led
- platform: gpio
name: "PS USB"
icon: mdi:usb
id: relay5
pin:
number: GPIO16
inverted: False
restore_mode: RESTORE_DEFAULT_ON
- platform: gpio
internal: true
id: red_led
pin:
number: GPIO3
inverted: True
- platform: restart
name: "${friendly_name} REBOOT"
binary_sensor:
- platform: gpio
name: "Button"
pin:
number: GPIO5
mode: INPUT_PULLUP
inverted: False
internal: true
on_press:
- switch.toggle: relay5
status_led:
id: blue_led
pin:
number: GPIO0
inverted: True
text_sensor:
- platform: version
name: ${friendly_name} ESPhome Version