Hey, I’ve been using this plugin since a week and it looks really nice!
However on my IPad the resolution seems to be far smaller than on my other devices (the ipad is the only ios device). I attached an screenshot of the card.
It’s hard to understand what you mean when you attach just the card since there is nothing to compare it to. We cannot tell what it looks like on the iphone vs. ipad nor how the other cards look in comparison to the cards around it.
Maybe try taking a screenshot of the whole screen on both devices?
From what I can tell, I think that’s just the difference in resolution between the ipad and your computer monitor’s resolution. If you reduced the resolution of your computer screen, the weather will probably look a little fuzzier as well.
For folks running into issues, I had to dig into the code to figure some stuff out, hope this will help others who run into problems:
If there’s an error: weather entity expected, that is because the first post example config is wrong. It should be entity:weather.x not weather_entity:weather.x
If the card is blank, that is because sensor.moon is needed. Somehow my HA does not have that be default? (maybe newer HA remove moon as the default?) Include this in your configuration.yaml
Leaving this bread crumb here to hopefully save someone else a lot of discovery. I also had crazy CPU usage on the browser host running Firefox 80.0. The suggestion below is not supported in the custom card from the OP at the top of this thread:
Copy the static icons from the git repository locally and use a local link in the “icons location” config option
cd {ha config dir}
mkdir -p www/icons/static_weather
wget https://github.com/bramkragten/weather-card/archive/v1.5.0.tar.gz
tar zxf v1.5.0.tar.gz
cp weather-card-1.5.0/icons/static/* www/icons/static_weather
rm v1.5.0.tar.gz
rm -rf weather-card-1.5.0
Now change the “icon location” config option to: /local/icons/static_weather/
As a side note if you leave the “icon location” config option blank it doesn’t use the locally installed animated icons, rather the card will cause your browser to load them from a CDN at: https://cdn.jsdelivr.net/gh/bramkragten/weather-card/dist/icons/
This is a common technique to track users and it will track all your browser clients. If you still want animated icons but don’t want to load them from the CDN you can change the “icon location” to: /local/community/weather-card/icons/
That path assumes you used HACS to install the card; if not then you probably know the path where you manually installed the card and icon files; just prepend /local/.