-
Notifications
You must be signed in to change notification settings - Fork 1
/
th7.yaml
240 lines (208 loc) · 5.82 KB
/
th7.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
#------------------------------
#-- th7.yaml
#-- Petit code pour monitorer la température et l'humidité dans une pièce
#-- location: hall rez
#--
#-- Bien que la sonde soit alimentée en permanence sur le secteur, on utilise quand même le
#-- mode dsleep afin que l'esp ne perturbe pas la sonde de température en chauffant
#--
#-- Si la pin D7 est à GND, alors part en dsleep pour une certaine durée autrement on tourne en mode normal
#-- ATTENTION, il faut relier la pin D0 à RST pour qu'il puisse sortir du dsleep mode !
#-- zf231019.1824
#--
#-- Procédure à faire sur mon iMAC pour le flash OTA HTTP (voir les secrets de ESPhome !)
#-- sshfs -o defer_permissions -p 22 [email protected]:/ ~/mnt/leo3/
#-- Il faut sauvegarder le binaire à flasher dans le dossier ~/mnt/leo3/
#-- Il faut publier sur mqtt 'th10/switch/th10_led/command' = ON/OFF pour allumer/éteindre la LED
#-- Il faut publier sur mqtt 'th10/switch/th10_firmware_update/command' = ON en RAW avec Retain pour lancer l'OTA
#--
# sources:
# https://esphome.io/components/sensor/htu21d.html
# https://github.com/oarcher/piotech/tree/main/components/ota_http
# Calcul de la durée sur une batterie: https://docs.google.com/spreadsheets/d/1I6s_R04LjGxCB0hrcvogGHNeITDwfXjM05hJhuqGkoU/edit#gid=1470557238
substitutions:
ota_server: !secret ota_server
temperature_calibration: "-0.0"
esphome:
name: th7
on_boot:
- switch.turn_off: led
# - switch.turn_on: led
esp8266:
board: d1_mini
# Configuration WIFI
wifi:
fast_connect: true
reboot_timeout: 15s
ssid: !secret wifi_ssid_apzuzu8
password: !secret wifi_pass_apzuzu8
# manual_ip:
# static_ip: 192.168.0.201
# gateway: 192.168.0.51
# dns1: 192.168.0.51
# dns2: 8.8.8.8
# subnet: 255.255.255.0
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "th7 Fallback"
password: !secret ap_wifi_password
captive_portal:
# Enable logging
logger:
level: DEBUG
# level: INFO
logs:
logger: INFO
adc: INFO
captive_portal: INFO
deep_sleep: INFO
htu21d: INFO
i2c: INFO
ota: INFO
restart: INFO
sensor: INFO
switch: INFO
switch.gpio: INFO
uptime.sensor: INFO
web_server: INFO
wifi_signal.sensor: INFO
mqtt: INFO
mqtt.component: INFO
mqtt.client: INFO
mqtt.switch: INFO
mqtt.sensor: INFO
# # Enable Home Assistant API
# api:
# password: !secret api_password
ota:
password: !secret ota_password
external_components:
- source: github://oarcher/piotech/
ota_http:
# WEB Server
web_server:
port: 80
# MQTT server
mqtt:
broker: !secret mqtt_server_dev
port: !secret mqtt_port_dev
username: !secret mqtt_user_dev
password: !secret mqtt_password_dev
birth_message:
will_message:
reboot_timeout: 15s
# I2C conf
i2c:
sda: D2
scl: D1
# frequency: 10khz
# Définition des Switch's
switch:
- platform: gpio
name: "th7 LED"
inverted: True
id: led
pin: D4
- platform: restart
name: "th7 Restart"
- platform: shutdown
name: "th7 Shutdown"
id: th7_shutdown
internal: true
- platform: template
name: "th7 Firmware update"
id: th7_firmware_update
turn_on_action:
then:
- binary_sensor.template.publish:
id: th7_ota_mode
state: ON
- logger.log: "On me demande un firmware update"
turn_off_action:
then:
- binary_sensor.template.publish:
id: th7_ota_mode
state: OFF
- logger.log: "On ne me demande plus un firmware update"
# Définition des Sensors
sensor:
- platform: wifi_signal
name: "th7 Signal Wi-Fi"
update_interval: 10s
on_value:
if:
condition:
mqtt.connected:
then:
- logger.log: Je suis connecté sur le mqtt et j'envoie la sauce !
- switch.turn_off: led
- delay: 1.0s
- switch.turn_on: led
- if:
condition:
lambda: 'return id(th7_ota_mode).state == 0;'
then:
- if:
condition:
lambda: 'return id(th7_sleep_mode).state == 1;'
then:
- logger.log: On me demande de dormir !
- deep_sleep.enter: deep_sleep_1
else:
- mqtt.publish:
topic: th7/switch/th7_firmware_update/command
payload: "OFF"
retain: True
- delay: 2s
- ota_http.flash:
url: http://${ota_server}/th7.bin
- logger.log: "This message should be not displayed(reboot)"
else:
- logger.log: Erreur 007 *********************************************************
- if:
condition:
lambda: 'return id(th7_sleep_mode).state == 1;'
then:
- logger.log: On me demande de dormir !
- deep_sleep.enter: deep_sleep_1
- platform: uptime
name: "th7 uptime"
update_interval: 2s
# température et humidité
- platform: htu21d
temperature:
name: "th7 Température"
filters:
- offset: ${temperature_calibration}
humidity:
name: "th7 Humidité"
# accuracy_decimals: 0
update_interval: 2s
# Définition des binary sensor
binary_sensor:
- platform: gpio
pin:
number: D7
mode: INPUT_PULLUP
inverted: True
name: "th7 sleep mode"
id: th7_sleep_mode
- platform: template
name: "th7 ota mode"
id: th7_ota_mode
# Définition des Sensors text
text_sensor:
- platform: version
name: "th7 Version 164434"
- platform: wifi_info
ip_address:
name: th7 IP Address
id: wifi_ip
ssid:
name: th7 Connected SSID
id: wifi_ssid
# Deep Sleep
deep_sleep:
# run_duration: 25s
sleep_duration: 60s
id: deep_sleep_1