forked from KinDR007/VictronMPPT-ESPHOME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
multi-rs-esp8266-example.yaml
101 lines (90 loc) · 2.27 KB
/
multi-rs-esp8266-example.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
substitutions:
name: multi-rs
external_components_source: github://KinDR007/VictronMPPT-ESPHOME@main
esphome:
name: ${name}
platform: ESP8266
board: d1_mini
external_components:
- source: ${external_components_source}
refresh: 0s
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
ota:
# api:
logger:
baud_rate: 0
esp8266_store_log_strings_in_flash: false
mqtt:
broker: !secret mqtt_host
username: !secret mqtt_username
password: !secret mqtt_password
id: mqtt_client
uart:
id: uart0
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
rx_buffer_size: 256
victron:
uart_id: uart0
id: victron0
throttle: 10s
sensor:
- platform: victron
victron_id: victron0
charging_mode_id:
name: "${name} charging mode id"
error_code:
name: "${name} error code"
ac_out_current:
name: "${name} ac out current"
id: ac_current
ac_out_voltage:
name: "${name} ac out voltage"
id: ac_voltage
yield_total:
name: "${name} yield total"
yield_today:
name: "${name} yield today"
max_power_today:
name: "${name} max power today"
yield_yesterday:
name: "${name} yield yesterday"
max_power_yesterday:
name: "${name} max power yesterday"
day_number:
name: "${name} day number"
battery_current:
name: "${name} battery current"
panel_power:
name: "${name} panel power"
battery_voltage:
name: "${name} battery voltage"
panel_voltage:
name: "${name} panel voltage"
- platform: template
name: "${name} ac out power"
# https://github.com/esphome/issues/issues/2793#issuecomment-988257209
lambda: |-
auto val = id(ac_voltage).state * id(ac_current).state;
if (isnan(val))
return {};
return val;
update_interval: 10s
text_sensor:
- platform: victron
victron_id: victron0
device_type:
name: "${name} device type"
serial_number:
name: "${name} serial number"
firmware_version_24bit:
name: "${name} firmware version 24bit"
charging_mode:
name: "${name} charging mode"
error:
name: "${name} error"
device_mode:
name: "${name} device mode"