You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am quite new to ha and also this card. As far as I understood HA and also this card only plot values with time entries in the past. Now I have a sensor (epex_spot) with values also one day ahead which I would love to plot. Can anyone pinpoint me how to accomplish that?
Thx for the hint. I already read through this, but I am unsure about how to apply the whole fn stuff.
Also, my sensor has the values in one attribute. Is it even possible with data like that?
ok, can you please pinnpoint me to this entry. I see the one with the meta.forecast from openweather. I am really unfamiliar on how to translate this term to the one I need.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
I am quite new to ha and also this card. As far as I understood HA and also this card only plot values with time entries in the past. Now I have a sensor (epex_spot) with values also one day ahead which I would love to plot. Can anyone pinpoint me how to accomplish that?
https://github.com/mampfes/ha_epex_spot
With apex charts this was accomplished with:
data_generator: > return entity.attributes.data.map((entry, index) => { return [new Date(entry.start_time).getTime(), entry.price_eur_per_mwh];}).slice(parseInt(hass.states['sensor.epex_start_low_period'].state.substring(0,2)),parseInt(hass.states['sensor.epex_start_low_period'].state.substring(0,2))+4);All reactions