Hi guys, here my first steps using HA…
Actually I am collecting data (as exercise) from solar controller through modbus.
Here sample piece of my configuration.yaml:
modbus:
- name: Solar_TemperatureEnv
slave: 1
address: 12342
# input_type: holding # funzione 03
input_type: input # funzione 04
unit_of_measurement: °C
device_class: temperature
state_class: measurement
scale: 0.01
offset: 0
precision: 1
data_type: int16
scan_interval: 60
- name: Solar_TemperatureCtrl
slave: 1
address: 12343
# input_type: holding # funzione 03
input_type: input # funzione 04
unit_of_measurement: °C
device_class: temperature
state_class: measurement
scale: 0.01
offset: 0
precision: 1
data_type: int16
scan_interval: 60
Then I show different cards, e.g.:
- Solar_TemperatureCtrl
- Solar_TemperatureEnv
I get temperature plot when I click on card.
I would like to see both temperature plots on same window, same graph or separated.
How should I change my code?
Thanks.