-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgel-1-cb3s-ns.yaml
178 lines (153 loc) · 3.48 KB
/
gel-1-cb3s-ns.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
168
169
170
171
172
173
174
175
176
177
178
esphome:
name: ${device_name}
friendly_name: ${light_name}
on_boot:
then:
- light.control:
id: my_light
state: !lambda return id(last_light_state);
- light.control:
id: green_led
state: !lambda return id(last_light_state);
project:
name: DiraSmart.Switch-1-NS
version: "CB3S"
dashboard_import:
package_import_url: github://jbrandek/esphome-packages/gel-1-cb3s-ns.yaml
import_full_config: false
bk72xx:
board: cb3s
#packages:
#common: github://jbrandek/esphome-packages/common.yaml
# Enable logging
logger:
# Enable Home Assistant API
api:
ota:
- platform: esphome
#on_error:
#- button.press: restart_button
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "${light_name} AP"
password: "1234567890"
captive_portal:
time:
- platform: homeassistant
id: homeassistant_time
globals:
- id: last_light_state
type: boolean
restore_value: yes
initial_value: "false"
preferences:
flash_write_interval: 30s #(time in seconds e.g. 30s)
output:
- platform: gpio
pin:
number: P9
id: switch_output
- platform: gpio
pin:
number: P26
#inverted: true
id: green_led_output
- platform: gpio
pin:
number: P11
#inverted: true
id: wifi_led_output
light:
- platform: binary
restore_mode: RESTORE_DEFAULT_OFF
name: Light
id: my_light
output: switch_output
on_turn_on:
- light.turn_on: green_led
- light.turn_off: wifi_led
- globals.set:
id: last_light_state
value: "true"
on_turn_off:
- light.turn_off: green_led
- light.turn_on: wifi_led
- globals.set:
id: last_light_state
value: "false"
- platform: binary
restore_mode: RESTORE_DEFAULT_OFF
id: green_led
output: green_led_output
- platform: binary
name: WiFi LED
restore_mode: RESTORE_DEFAULT_ON
entity_category: config
id: wifi_led
disabled_by_default: true
output: wifi_led_output
- platform: status_led
id: blue_led
pin:
number: P23
#inverted: true
binary_sensor:
- platform: status
name: "Connect"
- platform: gpio
internal: true
pin:
number: P7
inverted: true
mode: INPUT_PULLUP
id: my_button
name: Button
on_multi_click:
- timing:
#- ON for at most 1s
- ON for 40ms to 800ms
- OFF for at least 400ms
then:
- light.toggle: my_light
- timing:
# 5 click restart
- ON for 40ms to 400ms
- OFF for 40ms to 400ms
- ON for 40ms to 400ms
- OFF for 40ms to 400ms
- ON for 40ms to 400ms
- OFF for 40ms to 400ms
- ON for 40ms to 400ms
- OFF for 40ms to 400ms
- ON for 40ms to 400ms
- OFF for at least 400ms
then:
- button.press:
id: restart_button
text_sensor:
- platform: wifi_info
ip_address:
name: "IP Address"
ssid:
name: "SSID"
mac_address:
name: "MAC Address"
sensor:
- platform: wifi_signal
name: "WiFi Strength"
update_interval: 60s
- platform: uptime
name: "Uptime"
button:
- platform: restart
id: restart_button
name: "Reboot"
entity_category: config
switch:
- platform: safe_mode
name: "Safe Mode"
id: device_safe_mode
entity_category: config