I have several esp sensors sending temperature via mqtt and a mistubishi aircon also sending and receiving data over mqtt.
Everything works individually no problem but i’m trying to plot the temp sensors against air con setpoint and current temp. They automatically split into a separate graph, The unit of measure all seems to be the same. I’ve been scratching my head for hours trying to make it work.
Local weather temp data will plot against the A/C but all mqtt sensors remain on their own graph.
type: history-graph
entities:
- entity: sensor.garage_temp
- entity: sensor.lounge_temp
- entity: sensor.roof_temp
- entity: climate.loungeac
- entity: sun.sun
- entity: sensor.cooma_airport_temp
hours_to_show: 24
refresh_interval: 0
title: Duck temps
The config.yaml sensor setup
Lounge temp is pulled from the A/C mqtt so I could get it on the same graph as the other sensors.
sensor:
platform: mqtt
name: “Garage Temp”
state_topic: “esp/dht/garage/temperature”
unit_of_measurement: “°C”
sensor 2:
platform: mqtt
name: “Garage Humidity”
state_topic: “esp/dht/garage/humidity”
unit_of_measurement: “%”
sensor 3:
platform: mqtt
name: “Roof Temp”
state_topic: “esp/dht/roof/temperature”
unit_of_measurement: “°C”
sensor 4:
platform: mqtt
name: “Roof Humidity”
state_topic: “esp/dht/roof/humidity”
unit_of_measurement: “%”
sensor 5:
platform: mqtt
name: “Lounge Temp”
state_topic: “mitsubishi2mqtt/LoungeAC/state”
value_template: “{{ value_json.roomTemperature }}”
unit_of_measurement: “°C”
What am I missing that they won’t combine into the same graph?