-
Notifications
You must be signed in to change notification settings - Fork 1
/
tst_d1_disp1.yaml
175 lines (133 loc) · 4.28 KB
/
tst_d1_disp1.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
#------------------------------
#-- tst_d1_disp1.yaml
#-- Petit code pour une démo d'un display mini OLED de mini-d1
#-- va chercher le COV sur un autre capteur ESPhome et l'affiche
#-- source: https://esphome.io/cookbook/display_time_temp_oled.html
#-- zf210208.1701, zf221106.1300
#--
esphome:
name: tst_d1_disp1
esp8266:
board: esp01_1m
# Configuration WIFI
wifi:
ssid: !secret wifi_ssid_apzuzu7
password: !secret wifi_pass_apzuzu7
# networks:
# - ssid: !secret wifi_ssid_apzuzu7
# - password: !secret wifi_pass_apzuzu7
# - ssid: !secret wifi_ssid_apzuzu6
# - password: !secret wifi_pass_apzuzu6
# - ssid: !secret wifi_ssid_3G_zf
# - password: !secret wifi_pass_3G_zf2
# - ssid: !secret wifi_ssid_3G_zf2
# - password: !secret wifi_pass_3G_zf2
# - ssid: !secret wifi_ssid_3g_s7
# - password: !secret wifi_pass_3g_s7
# - ssid: !secret wifi_ssid_apzuzu6_EXT
# - password: !secret wifi_pass_apzuzu6_EXT
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "tst_d1_disp1 Fallback"
password: !secret ap_wifi_password
captive_portal:
# Enable logging
logger:
level: VERBOSE
# Enable Home Assistant API
api:
password: !secret api_password
ota:
password: !secret ota_password
# Définitions des actions Switch
switch:
- platform: gpio
name: "tst_d1_disp1 LED"
inverted: True
id: led
pin: GPIO2
- platform: restart
name: "tst_d1_disp1 Restart"
# WEB Server
web_server:
port: 80
# Récupération de l'heure de Home Assistant
time:
- platform: homeassistant
id: esptime
sensor:
- platform: wifi_signal
name: "tst_d1_disp1 Signal Wi-Fi"
update_interval: 60s
- platform: uptime
name: "tst_d1_disp1 uptime"
update_interval: 60s
- platform: homeassistant
name: "tst_d1_disp1 Outside Temp"
id: outside_temperature
entity_id: sensor.weather_temp
# internal: true
- platform: homeassistant
name: "tst_d1_disp1 Inside Temp"
entity_id: sensor.th5_temperature
id: inside_temperature
- platform: homeassistant
name: "tst_d1_disp1 TVOC"
entity_id: sensor.co2_72_tvoc
id: tvoc
text_sensor:
- platform: version
name: "tst_d1_disp1 Version"
- platform: wifi_info
ip_address:
name: tst_d1_disp1 IP Address
id: wifi_ip
ssid:
name: tst_d1_disp1 Connected SSID
id: wifi_ssid
- platform: homeassistant
entity_id: input_text.text1
name: "tst_d1_disp1 Alarm State"
id: alarm_state
font:
#https://github.com/JotJunior/PHP-Boleto-ZF2/blob/master/public/assets/fonts/arial.ttf
- file: 'arialn.ttf'
id: font1
size: 10
- file: 'arialn.ttf'
id: font2
size: 13
i2c:
sda: GPIO04
scl: GPIO05
scan: False
frequency: 200kHz
display:
# http://www.esp8266learning.com/wemos-oled-shield-example.php
# https://esphome.io/api/namespaceesphome_1_1display.html
- platform: ssd1306_i2c
model: "SSD1306 64x48"
address: 0x3C
lambda: |-
// Print "Hello Zuzu" for fonts tests in top center.
//it.printf(32, 0, id(font1), TextAlign::TOP_CENTER, "Hello Zuzu");
// Print inside temperature (from homeassistant sensor)
it.printf(0, 7, id(font1), TextAlign::BASELINE_LEFT, "In side");
if (id(inside_temperature).has_state()) {
it.printf(64, 7, id(font1), TextAlign::BASELINE_RIGHT , "%.1f°C", id(inside_temperature).state);
}
// Print outside temperature (from homeassistant sensor)
it.printf(0, 16, id(font1), TextAlign::BASELINE_LEFT, "Out side");
if (id(outside_temperature).has_state()) {
it.printf(64, 16, id(font1), TextAlign::BASELINE_RIGHT , "%.1f°C", id(outside_temperature).state);
}
// Print TVOC (from homeassistant sensor)
it.printf(0, 25, id(font1), TextAlign::BASELINE_LEFT, "TVOC");
if (id(outside_temperature).has_state()) {
it.printf(64, 25, id(font1), TextAlign::BASELINE_RIGHT , "%.0f", id(tvoc).state);
}
// Print "L'état du input text de HA: <state>" in midle center
it.printf(32, 36, id(font2), TextAlign::BASELINE_CENTER, "%s", id(alarm_state).state.c_str());
// Print time in HH:MM format
it.strftime(32, 48, id(font1), TextAlign::BOTTOM_CENTER, "%d-%m %H:%M:%S", id(esptime).now());
#unavailable