-
Notifications
You must be signed in to change notification settings - Fork 0
/
sonoff-dual-r3-lite.yaml
170 lines (153 loc) · 3.3 KB
/
sonoff-dual-r3-lite.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
---
substitutions:
# Device defaults
device_name: sonoff-dual-r3-lite
friendly_name: Sonoff Dual R3 Lite
device_description: Sonoff Dual Relay Wi-Fi Smart Switch
channel_1_name: Light 1
channel_2_name: Light 2
restore_mode: RESTORE_DEFAULT_OFF
# Project info
project_name: "sonoff.dual-r3-lite"
project_version: "1.0"
# Credentials
wifi_password: "12345678"
esphome:
name: "${device_name}"
name_add_mac_suffix: true
friendly_name: "${friendly_name}"
comment: "${device_description}"
project:
name: "${project_name}"
version: "${project_version}"
esp32:
board: esp32dev
framework:
type: arduino
# To be able to get logs from the device via serial and api.
logger:
# API is a requirement of the dashboard import.
api:
# OTA is required for Over-the-Air updating.
ota:
- platform: esphome
# Public location of this yaml file.
dashboard_import:
package_import_url: github://scsole/esphome-device-configs/sonoff-dual-r3-lite.yaml@main
wifi:
# Setup a wifi access point.
ap:
password: "${wifi_password}"
# In combination with wifi `ap`, allow the user to provision wifi credentials to the device.
captive_portal:
binary_sensor:
# Built-in button
- platform: gpio
name: Button
pin:
number: GPIO00
mode:
input: true
pullup: true
inverted: true
internal: true
on_multi_click:
- timing:
- ON for at most 1s
- OFF for at least 0.01s
then:
- light.toggle: light_1
- timing:
- ON for at least 4s
then:
- button.press: reset
# Input 1
- platform: gpio
name: Input 1
pin: GPIO32
id: switch_1
disabled_by_default: true
# Edge
on_press:
then:
- light.toggle:
id: light_1
on_release:
then:
- light.toggle:
id: light_1
# Toggle
# on_press:
# then:
# - light.turn_on:
# id: light_1
# on_release:
# then:
# - light.turn_off:
# id: light_1
# Input 2
- platform: gpio
name: Input 2
pin: GPIO33
id: switch_2
disabled_by_default: true
# Edge
on_press:
then:
- light.toggle:
id: light_2
on_release:
then:
- light.toggle:
id: light_2
# Toggle
# on_press:
# then:
# - light.turn_on:
# id: light_2
# on_release:
# then:
# - light.turn_off:
# id: light_2
output:
- platform: gpio
pin: GPIO27
id: relay_1
- platform: gpio
pin: GPIO14
id: relay_2
light:
- platform: binary
name: "${channel_1_name}"
output: relay_1
id: light_1
restore_mode: ${restore_mode}
- platform: binary
name: "${channel_2_name}"
output: relay_2
id: light_2
restore_mode: ${restore_mode}
status_led:
pin:
number: GPIO13
inverted: true
button:
- platform: restart
name: Restart
- platform: factory_reset
name: Restart with Factory Default Settings
disabled_by_default: true
id: reset
sensor:
- platform: wifi_signal
name: WiFi Signal dB
id: wifi_signal_db
update_interval: 60s
text_sensor:
- platform: wifi_info
ip_address:
name: IP Address
ssid:
name: Connected SSID
mac_address:
name: Mac Address