-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathesphome_shield01.yaml
125 lines (106 loc) · 2.49 KB
/
esphome_shield01.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
substitutions:
hostname: 'shield01'
esphome:
name: $hostname
#Hack para resolver bug NODE com I2C OLED.
on_boot:
priority: 200
then:
- wait_until:
condition:
wifi.connected:
timeout: 5s
esp8266:
board: nodemcuv2
# Enable logging
logger:
# Enable Home Assistant API
api:
encryption:
key: "<secret>"
ota:
password: "<secret>"
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
fast_connect: true
power_save_mode: none
reboot_timeout: 15min
ap:
ssid: "{hostname} Fallback"
password: "{hostname}"
#web_server:
# local: true
# port: 80
# auth:
# username: !secret webserver_username
# password: !secret webserver_password
# version: 2
font:
- file: "gfonts://Open Sans"
id: opensans
size: 14
- file: "gfonts://Roboto"
id: roboto
size: 14
time:
- platform: homeassistant
id: esptime
text_sensor:
- platform: wifi_info
ip_address:
id: ${hostname}_IP
name: ${hostname} Endereço IP
icon: mdi:ip-network
ssid:
id: ${hostname}_SSID
name: ${hostname} Rede Wifi
icon: mdi:wifi
- platform: version
id: ${hostname}_versao
name: ${hostname} Versão
icon: mdi:information
switch:
- platform: restart
id: ${hostname}_restart
name: ${hostname} Reiniciar
icon: mdi:restart
sensor:
- platform: wifi_signal
id: ${hostname}_wifi_sinal
name: ${hostname} Intensidade Wifi
icon: mdi:signal
update_interval: 60s
- platform: uptime
id: ${hostname}_uptime
# name: ${hostname} Uptime
update_interval: 1s
unit_of_measurement: "s"
accuracy_decimals: 0
internal: True
icon: mdi:clock-check-outline
############################################### I2C DISPLAY #########################################################
i2c:
- id: oled
sda: D5
scl: D4
scan: true
#Hack para BUG NODE com I2C OLED
frequency: 800khz
display:
- platform: ssd1306_i2c
model: "SH1106 128x64"
address: 0x3C
id: oled_display
update_interval: 1s
pages:
- id: page1
lambda: |-
it.printf(0, 0, id(opensans), "Wi-Fi: %.1f", id(${hostname}_wifi_sinal).state);
it.printf(0, 26, id(roboto), "Uptime: %us", int(id(${hostname}_uptime).state));
it.printf(0, 40, id(roboto), "Ip: %s", id(${hostname}_IP).state.c_str());
interval:
- interval: 1s
then:
- display.page.show_next: oled_display
- component.update: oled_display