Try changing update_interval to scan_interval in your sensors.yaml and restart HA. There was a breaking change to the dark sky platform a version or so ago that changed this.
Thanks. Nothing about dark sky in that log. Next step is for me to delete everything and start over, re, dark sky card. Will let you know. Thanks again.
Iām not sure about anyone else, but I keep receiving the following error: Please remove [value_template]. (See /home/offspring/.homeassistant/sensors.yaml, line 0).
Hi, m.p.frankland,
I have followed the latest instructions, but itās still not working, would you let me know where I have gone wrong. I am getting this error;
I seem to have not included it in my original copy/paste. I went to go add it, but itās right there. Hereās a new copy/paste of the entire section, which does show the proper {% endif %}
As I mentioned below, you have commented out the name of the template sensor
Based on your last post you have also commented out the 1st template sensor
# dark_sky_current_text:
That leaves you with two value_template statements in the middle of your configuration with no template sensor names to associate them with which is why you are getting your current error.
You also mention that you commented these lines out because you were getting an error on those lines
You havenāt posted what that error is, but it is likely because you have stuck the template sensors in the middle of your configuration immediately below your dark sky configuration without defining the template platform.
The template platform should start like this
- platform: template
sensors:
with the templates defined below it.
I would suggest reviewing the HA documentation on template sensors to see other examples of how they work. You can find it here.
Also, please note that the two template sensors you are adding are only examples and are only needed under certain conditions based on how you configure the card. The readme for the card has details on this.
Iām not sure what the problem was before, but the error was something to the effect of āthese are no longer supported post .88, and previously we didnāt complainā. I went and uncommented them and now all of a sudden HA seems to be fine with them.
I know theyāre only examples, but that was how I got the card to show up with all of the data/mouseover tooltips.
Your configuration contains extra keys that the platform does not support. Please remove [dark_sky_current_text], [dark_sky_alt_wind]. (See /home/offspring/.homeassistant/sensors.yaml, line 0).
Without it, HA thinks you are adding tempate sensors to the dark sky platform which it doesnt support.
This is based on the posting of your config you provided here:
I seem to have not included it in my original copy/paste. I went to go add it, but itās right there. Hereās a new copy/paste of the entire section, which does show the proper {% endif %}