-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathslimmelezer.yaml
171 lines (155 loc) · 4.56 KB
/
slimmelezer.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
# Note that next to this file a files secrets.yaml must exist with the following content (without the leading #):
# Configuration file for ESPHome 2023.7.0 or higher
#wifi_ssid: "your wifi sid"
#wifi_password: "your wifi password"
#Replace your wifi sid and your wifi password with your actual wifi name and password and keep the quotes.
substitutions:
device_name: slimmelezer
device_description: "DIY P1 module to read your smart meter"
esphome:
name: ${device_name}
comment: "${device_description}"
platform: ESP8266
esp8266_restore_from_flash: true
board: d1_mini
name_add_mac_suffix: false
project:
name: zuidwijk.slimmelezer
version: "2.0"
wifi:
# networks section is optional. If not there then first connect to slimmemeter hotspot
networks:
- ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: ${device_name}
captive_portal:
# Enable logging
logger:
baud_rate: 0
# level: DEBUG
# Enable Home Assistant API
api:
ota:
- platform: esphome
web_server:
port: 80
uart:
baud_rate: 115200
rx_pin: D7
rx_buffer_size: 1700
# see https://next.esphome.io/components/sensor/dsmr.html
dsmr:
max_telegram_length: 1700
# gas_mbus_id: 1
# crc_check: false
sensor:
- platform: dsmr
water_delivered:
name: "Water Consumed"
device_class: water
unit_of_measurement: "m³"
state_class: total_increasing
energy_returned_lux:
name: "Electricity Peak Current Month"
unit_of_measurement: "kWh"
energy_delivered_tariff1:
name: "Energy Consumed Tariff 1"
energy_delivered_tariff2:
name: "Energy Consumed Tariff 2"
energy_returned_tariff1:
name: "Energy Produced Tariff 1"
energy_returned_tariff2:
name: "Energy Produced Tariff 2"
power_delivered:
name: "Power Consumed"
accuracy_decimals: 3
power_returned:
name: "Power Produced"
accuracy_decimals: 3
electricity_failures:
name: "Electricity Failures"
icon: mdi:alert
electricity_long_failures:
name: "Long Electricity Failures"
icon: mdi:alert
voltage_l1:
name: "Voltage Phase 1"
# voltage_l2:
# name: "Voltage Phase 2"
# voltage_l3:
# name: "Voltage Phase 3"
current_l1:
name: "Current Phase 1"
# current_l2:
# name: "Current Phase 2"
# current_l3:
# name: "Current Phase 3"
power_delivered_l1:
name: "Power Consumed Phase 1"
accuracy_decimals: 3
# power_delivered_l2:
# name: "Power Consumed Phase 2"
# accuracy_decimals: 3
# power_delivered_l3:
# name: "Power Consumed Phase 3"
# accuracy_decimals: 3
power_returned_l1:
name: "Power Produced Phase 1"
accuracy_decimals: 3
# power_returned_l2:
# name: "Power Produced Phase 2"
# accuracy_decimals: 3
# power_returned_l3:
# name: "Power Produced Phase 3"
# accuracy_decimals: 3
# gas_delivered:
# name: "Gas Consumed"
# id: gas_delivery_total
# state_class: "total_increasing"
# unit_of_measurement: "m³"
gas_delivered_be:
name: "Gas Consumed"
unit_of_measurement: "m³"
id: gas_delivered_belgium
state_class: total_increasing
- platform: uptime
name: "SlimmeLezer Uptime"
- platform: wifi_signal
name: "SlimmeLezer Wi-Fi Signal"
update_interval: 60s
- platform: template
name: "Gas Consumed in kWh"
unit_of_measurement: "kWh"
accuracy_decimals: 3
state_class: total_increasing
device_class: "energy"
# The conversion factor from m3 to kWh depends on many factors.
# Check your (year) bill. It should show the usage in m3 and then also in kWh. Divide the two and you should get the factor which will be a year average value.
lambda: |-
return id(gas_delivered_belgium).state * 11.45;
text_sensor:
- platform: dsmr
electricity_tariff:
name: "Electricity Tariff"
filters:
- map:
- 0001 -> Normal
- 0002 -> Low
identification:
name: "DSMR Identification"
p1_version:
name: "DSMR Version"
p1_version_be:
name: "DSMR Version Belgium"
- platform: wifi_info
ip_address:
name: "SlimmeLezer IP Address"
ssid:
name: "SlimmeLezer Wi-Fi SSID"
bssid:
name: "SlimmeLezer Wi-Fi BSSID"
- platform: version
name: "ESPHome Version"
hide_timestamp: false