Hi all,
I am trying to set up a Home Assistant dashboard for my battery bank using the Modbus TCP integration. VenusOS 3.12 runs on a Raspberry Pi 3B and pulls the data from my BMV-712 Smart battery monitor.
While some of the address values for device_class: battery are working flawlessly it is unable to read the sensor config of
- name: BMV_712 Time to go
unit_of_measurement: "seconds"
slave: 238
address: 303
input_type: holding
data_type: uint16
scale: 0.01
precision: 2
device_class: battery
state_class: measurement
and
- name: BMV_712 Time since last charge
unit_of_measurement: "seconds"
slave: 238
address: 289
input_type: holding
data_type: uint16
scale: 0.01
precision: 2
device_class: battery
state_class: measurement
The sensors don't show up in the list of entities after having restarted Home Assistant although I used the proper registers from the current list.
What I am trying to achieve is having the Battery Summary & Battery History entries from VRM available in Home Assistant.
Am I missing something here?
Thanks in advance.