forked from KinDR007/VictronMPPT-ESPHOME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
smartsolar-mppt-esp8266-example-advanced.yaml
264 lines (241 loc) · 6.52 KB
/
smartsolar-mppt-esp8266-example-advanced.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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
substitutions:
external_components_source: github://KinDR007/VictronMPPT-ESPHOME@main
lower_devicename: "victron"
devicename: "SmartSolar_150_35"
config_version: "v2021.05.30"
wifi_fast_connect: "false"
accuracy: "2"
esphome:
name: "${lower_devicename}"
platform: ESP8266
board: d1_mini
# board: nodemcuv2
external_components:
- source: ${external_components_source}
refresh: 0s
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
power_save_mode: none
fast_connect: $wifi_fast_connect
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "${devicename} Hotspot"
password: !secret wifi_password
captive_portal:
logger:
baud_rate: 0
# level: VERY_VERBOSE
esp8266_store_log_strings_in_flash: false
# Enable Home Assistant API
api:
password: "pass"
reboot_timeout: 0s
ota:
password: "pass"
web_server:
port: 80
time:
- platform: homeassistant
uart:
id: uart_bus
tx_pin: D8 # Not connected! The communication is read-only
rx_pin: D7 # Connect this this GPIO and GND to the MPPT charger
baud_rate: 19200
stop_bits: 1
data_bits: 8
parity: NONE
rx_buffer_size: 256
victron:
id: victron0
uart_id: uart_bus
throttle: 10s
sensor:
- platform: victron
victron_id: victron0
panel_voltage:
name: "Panel voltage"
id: pv
battery_voltage:
name: "Battery voltage"
id: bv
battery_current:
name: "Battery current"
id: bc
load_current:
name: "Load current"
id: load_current
max_power_yesterday:
name: "Max power yesterday"
id: max_power_yesterday
max_power_today:
name: "Max power today"
id: max_power_today
accuracy_decimals: ${accuracy}
yield_total:
name: "Yield total"
id: yield_total
filters:
# Multiplication factor from W to kW is 0.001
- multiply: 0.001
unit_of_measurement: kWh
accuracy_decimals: ${accuracy}
yield_yesterday:
name: "Yield yesterday"
id: yield_yesterday
filters:
# Multiplication factor from W to kW is 0.001
- multiply: 0.001
unit_of_measurement: kWh
accuracy_decimals: ${accuracy}
yield_today:
name: "Yield today"
id: yt
filters:
# Multiplication factor from W to kW is 0.001
- multiply: 0.001
unit_of_measurement: kWh
accuracy_decimals: ${accuracy}
panel_power:
name: "Panel power"
id: panel_power
day_number:
name: "Day sequence number"
id: day_number
icon: "mdi:calendar-today"
charging_mode_id:
name: "Charger mode id"
error_code:
name: "Error code"
tracking_mode_id:
name: "Tracker mode id"
- platform: wifi_signal
name: "${devicename} WiFi Signal Sensor"
id: rssi_sensor
update_interval: 15s
- platform: template
name: "Wifi Quality"
unit_of_measurement: "%"
accuracy_decimals: 0
icon: "mdi:wifi"
update_interval: 15s
lambda: |-
int quality;
const int rssi = id(rssi_sensor).state;
if (rssi <= -100) {
quality = 0;
} else if (rssi >= -50) {
quality = 100;
} else {
quality = 2 * (rssi + 100);
}
return quality;
- platform: uptime
name: "${devicename} Uptime"
id: uptime_s
update_interval: 5s
- platform: template # for 1 cell of battery
name: "Bat S1 " # 7S pack
lambda: |-
if ((((id(bv).state) / 7) > 4.22) && (((id(bv).state) / 7) < 3.2)) {
return NAN;
}
return ((id(bv).state) / 7);
update_interval: 10s
icon: "mdi:battery"
unit_of_measurement: V
device_class: "voltage"
accuracy_decimals: ${accuracy}
- platform: template # Battery working percent
name: "Bat working percent" # cycle batt between 3,7v - 4.17v
lambda: |-
if (((((((((id(bv).state) / 7 )) - 3.700) / (4.170 - 3.700)) * 100)) >= 115) && ((((((((id(bv).state) / 7 )) - 3.700) / (4.170 - 3.700)) * 100)) <= -25)) {
return NAN;
}
return ((((((id(bv).state) / 7 )) - 3.700) / (4.170 - 3.700) ) * 100);
update_interval: 15s
icon: "mdi:battery"
unit_of_measurement: "%"
device_class: "voltage"
accuracy_decimals: ${accuracy}
- platform: template # FVE percent
name: "FVE percent" # 500Wp max power of my FVE grid
lambda: |-
if (((((id(panel_power).state) / 500) * 100) >= 120) && ((((id(panel_power).state) / 500) * 100) < 0)) {
return NAN;
}
return (((id(panel_power).state) / 500) * 100);
icon: "mdi:gauge"
unit_of_measurement: "%"
device_class: "power"
accuracy_decimals: ${accuracy}
update_interval: 15s
- platform: template # median generated day energy
name: "Day median generated " # 500Wp max power of my FVE grid
lambda: |-
return (id(yield_total).state) / (id(day_number).state);
update_interval: 15s
icon: "mdi:gauge"
unit_of_measurement: "kWh"
device_class: "power"
accuracy_decimals: 3
text_sensor:
- platform: victron
victron_id: victron0
charging_mode:
name: "Charging Mode"
error:
name: "Error"
tracking_mode:
name: "Tracking Mode"
firmware_version:
name: "Firmware Version"
device_type:
name: "Device Type"
- platform: template
name: "${devicename} Config Version"
icon: mdi:information-outline
lambda: |-
return {"${config_version}"};
- platform: version
name: "${devicename} Esphome Version"
icon: mdi:information-outline
- platform: wifi_info
ip_address:
name: "${devicename} IP Address"
icon: mdi:ip
ssid:
name: "${devicename} Connected SSID"
icon: mdi:wifi
bssid:
name: "${devicename} Connected BSSID"
mac_address:
name: "${devicename} Mac Wifi Address"
- platform: template
name: "${devicename} Uptime (formatted)"
lambda: |-
uint32_t dur = id(uptime_s).state;
int dys = 0;
int hrs = 0;
int mnts = 0;
if (dur > 86399) {
dys = trunc(dur / 86400);
dur = dur - (dys * 86400);
}
if (dur > 3599) {
hrs = trunc(dur / 3600);
dur = dur - (hrs * 3600);
}
if (dur > 59) {
mnts = trunc(dur / 60);
dur = dur - (mnts * 60);
}
char buffer[17];
sprintf(buffer, "%ud %02uh %02um %02us", dys, hrs, mnts, dur);
return {buffer};
icon: mdi:clock-start
update_interval: 5s
switch:
- platform: restart
icon: mdi:reload-alert
name: "${devicename} Restart"