I just installed a new temperature sensor in my attic. It is based on Tasmota running on an ESP8266 and reports temperatures and humidity via MQTT. The configuration looks like this:
- platform: mqtt
name: "Attic Temperature"
state_topic: "tele/attic01/SENSOR"
unit_of_measurement: '°C'
value_template: "{{ value_json.SI7021.Temperature }}"
retain: true
- platform: mqtt
name: "Attic Humidity"
state_topic: "tele/motion01/SENSOR"
unit_of_measurement: '%'
value_template: "{{ value_json.SI7021.Humidity }}"
retain: true
The reporting seems to be working as expected but when I click on the icon to see a history graph, I see two graphs:
The sensor shows up normally in the states developer section. Also, the humidity sensor shows normally (one graph) in the history display. Any ideas?