forked from athom-tech/athom-configs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathathom-mini-switch.yaml
129 lines (109 loc) · 2.49 KB
/
athom-mini-switch.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
substitutions:
name: "athom-mini-switch"
friendly_name: "Athom Mini Switch"
project_name: "athom.mini-switch"
project_version: "1.1"
light_restore_mode: RESTORE_DEFAULT_OFF
esphome:
name: "${name}"
name_add_mac_suffix: true
project:
name: "${project_name}"
version: "${project_version}"
esp8266:
board: esp8285
restore_from_flash: true
api:
ota:
logger:
baud_rate: 0
mdns:
disabled: false
web_server:
port: 80
wifi:
ap: {}
captive_portal:
dashboard_import:
package_import_url: github://athom-tech/athom-configs/athom-mini-switch.yaml
button:
- platform: factory_reset
name: Restart with Factory Default Settings
id: Reset
output:
- platform: gpio
id: relay_output
pin: GPIO13
light:
- platform: status_led
id: led
name: "${friendly_name} Blue LED"
disabled_by_default: true
pin:
number: GPIO4
inverted: true
- platform: binary
id: mini_relay
output: relay_output
name: "${friendly_name} Light"
restore_mode: ${light_restore_mode}
sensor:
- platform: uptime
name: "${friendly_name} Uptime"
disabled_by_default: true
- platform: wifi_signal
name: "${friendly_name} WiFi Signal"
update_interval: 60s
binary_sensor:
# Wired switch
- platform: gpio
id: the_switch
name: "${friendly_name} Power Switch"
disabled_by_default: true
pin:
number: GPIO14
mode: INPUT_PULLUP
on_state:
- light.toggle: mini_relay
- light.toggle: led
on_multi_click:
- timing:
- ON for at most 0.5s
- OFF for at most 0.5s
- ON for at most 0.5s
- OFF for at most 0.5s
- ON for at most 0.5s
- OFF for at most 0.5s
- ON for at most 0.5s
- OFF for at most 0.5s
then:
- button.press: Reset
# Button on mini switch
- platform: gpio
pin:
number: GPIO3
mode: INPUT_PULLUP
inverted: true
name: "${friendly_name} Power Button"
disabled_by_default: true
on_multi_click:
- timing:
- ON for at most 1s
- OFF for at least 0.2s
then:
- light.toggle: mini_relay
- light.toggle: led
- timing:
- ON for at least 4s
then:
- button.press: Reset
- platform: status
name: "${friendly_name} Status"
text_sensor:
- platform: wifi_info
ip_address:
name: "${friendly_name} IP Address"
disabled_by_default: true
time:
- platform: sntp
id: my_time