-
Notifications
You must be signed in to change notification settings - Fork 66
/
phoenix-charger-esp8266-example.yaml
88 lines (76 loc) · 1.99 KB
/
phoenix-charger-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
substitutions:
name: phoenix-charger
external_components_source: github://KinDR007/VictronMPPT-ESPHOME@main
esphome:
name: ${name}
platform: ESP8266
board: d1_mini
min_version: 2024.6.0
external_components:
- source: ${external_components_source}
refresh: 0s
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
ota:
platform: esphome
logger:
baud_rate: 0
esp8266_store_log_strings_in_flash: false
# If you use Home Assistant please remove this `mqtt` section and uncomment the `api` component!
# The native API has many advantages over MQTT: https://esphome.io/components/api.html#advantages-over-mqtt
mqtt:
broker: !secret mqtt_host
username: !secret mqtt_username
password: !secret mqtt_password
id: mqtt_client
# api:
uart:
id: uart_0
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: uart_0
id: victron0
throttle: 10s
sensor:
- platform: victron
victron_id: victron0
battery_voltage:
name: "${name} battery voltage"
battery_voltage_2:
name: "${name} battery voltage 2"
battery_voltage_3:
name: "${name} battery voltage 3"
battery_current:
name: "${name} battery current"
battery_current_2:
name: "${name} battery current 2"
battery_current_3:
name: "${name} battery current 3"
error_code:
name: "${name} error code"
charging_mode_id:
name: "${name} charging mode id"
device_mode_id:
name: "${name} device mode id"
text_sensor:
- platform: victron
victron_id: victron0
error:
name: "${name} error"
charging_mode:
name: "${name} charging mode"
device_type:
name: "${name} device type"
serial_number:
name: "${name} serial number"
device_mode:
name: "${name} device mode"
binary_sensor:
- platform: victron
victron_id: victron0
relay_state:
name: "${name} relay state"