Custom weather provider
You can use any weather data provider by setting custom_weather_url on a weather location. Kiosk will expect the JSON payload to be structured in a specific way so you will most likely need to create a custom weather service/server that will fetch your weather data and provide it in the required format.
Example weather Location
weather:
locations:
- name: custom
custom_weather_url: https://{CUSTOM_WEATHER_PROVIDER_URL}
forecast: false
show:
temperature_range: false
humidity: false
wind: false
visibility: false
default: falseView the custom weather documentation for more information.
What's Changed
🚀 New Features
- feature/custom-weather by @damongolding in #817
Full Changelog: v0.40.2...v0.41.0