Heatmaps in Home Assistant possible? #748
Unanswered
JulianPSLearner
asked this question in
Q&A
Replies: 1 comment
|
I tried heat maps myself but I don't think they are properly supported by this card. Went with |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hi guys, I was looking for hours for examples for the heatmap. Are there any? I found on the apex chart side few examples but not customized for HA.
I wanted a heatmap that shows me on the X-axis day 1-30 and on y-axis I want to see the different room temperatur sensors.
I want to see three color variations depending on the heat.
This is what I got so far. Unfortunately no heatmap shows up at all :(
Any help would be appreciated:
entity: sensor.og_kind_3_thermo_0467_1_actual_temperature
name: 'Temperature'
data_generator: |
function() {
const data = [];
const months = 12;
const days = 30;
const sensorData = entity.attributes['history'][0]; // Example for historical data
}
All reactions