├── README.md └── custom_components └── hf_weather ├── __init__.py ├── config_flow.py ├── const.py ├── local └── hf_weather-card │ ├── hf_weather-card.js │ ├── hf_weather-more-info.js │ └── icons │ ├── README.md │ ├── animated │ ├── cloudy-day-1.svg │ ├── cloudy-day-2.svg │ ├── cloudy-day-3.svg │ ├── cloudy-night-1.svg │ ├── cloudy-night-2.svg │ ├── cloudy-night-3.svg │ ├── cloudy.svg │ ├── day.svg │ ├── night.svg │ ├── rainy-1.svg │ ├── rainy-2.svg │ ├── rainy-3.svg │ ├── rainy-4.svg │ ├── rainy-5.svg │ ├── rainy-6.svg │ ├── rainy-7.svg │ ├── snowy-1.svg │ ├── snowy-2.svg │ ├── snowy-3.svg │ ├── snowy-4.svg │ ├── snowy-5.svg │ ├── snowy-6.svg │ ├── thunder.svg │ ├── weather-sprite.svg │ ├── weather.svg │ ├── weather_sagittarius.svg │ └── weather_sunset.svg │ └── static │ ├── cloudy-day-1.svg │ ├── cloudy-day-2.svg │ ├── cloudy-day-3.svg │ ├── cloudy-night-1.svg │ ├── cloudy-night-2.svg │ ├── cloudy-night-3.svg │ ├── cloudy.svg │ ├── day.svg │ ├── night.svg │ ├── rainy-1.svg │ ├── rainy-2.svg │ ├── rainy-3.svg │ ├── rainy-4.svg │ ├── rainy-5.svg │ ├── rainy-6.svg │ ├── rainy-7.svg │ ├── snowy-1.svg │ ├── snowy-2.svg │ ├── snowy-3.svg │ ├── snowy-4.svg │ ├── snowy-5.svg │ ├── snowy-6.svg │ ├── thunder.svg │ ├── weather-sprite.svg │ ├── weather.svg │ ├── weather_sagittarius.svg │ └── weather_sunset.svg ├── manifest.json ├── translations └── en.json └── weather.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/hf_weather/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/__init__.py -------------------------------------------------------------------------------- /custom_components/hf_weather/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/config_flow.py -------------------------------------------------------------------------------- /custom_components/hf_weather/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/const.py -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/hf_weather-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/hf_weather-card.js -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/hf_weather-more-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/hf_weather-more-info.js -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/README.md -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/cloudy-day-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/cloudy-day-1.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/cloudy-day-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/cloudy-day-2.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/cloudy-day-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/cloudy-day-3.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/cloudy-night-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/cloudy-night-1.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/cloudy-night-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/cloudy-night-2.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/cloudy-night-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/cloudy-night-3.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/cloudy.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/day.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/day.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/night.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/rainy-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/rainy-1.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/rainy-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/rainy-2.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/rainy-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/rainy-3.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/rainy-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/rainy-4.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/rainy-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/rainy-5.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/rainy-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/rainy-6.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/rainy-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/rainy-7.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/snowy-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/snowy-1.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/snowy-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/snowy-2.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/snowy-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/snowy-3.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/snowy-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/snowy-4.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/snowy-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/snowy-5.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/snowy-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/snowy-6.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/thunder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/thunder.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/weather-sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/weather-sprite.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/weather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/weather.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/weather_sagittarius.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/weather_sagittarius.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/animated/weather_sunset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/animated/weather_sunset.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/cloudy-day-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/cloudy-day-1.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/cloudy-day-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/cloudy-day-2.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/cloudy-day-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/cloudy-day-3.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/cloudy-night-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/cloudy-night-1.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/cloudy-night-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/cloudy-night-2.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/cloudy-night-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/cloudy-night-3.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/cloudy.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/day.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/day.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/night.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/rainy-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/rainy-1.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/rainy-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/rainy-2.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/rainy-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/rainy-3.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/rainy-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/rainy-4.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/rainy-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/rainy-5.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/rainy-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/rainy-6.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/rainy-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/rainy-7.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/snowy-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/snowy-1.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/snowy-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/snowy-2.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/snowy-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/snowy-3.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/snowy-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/snowy-4.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/snowy-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/snowy-5.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/snowy-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/snowy-6.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/thunder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/thunder.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/weather-sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/weather-sprite.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/weather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/weather.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/weather_sagittarius.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/weather_sagittarius.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/local/hf_weather-card/icons/static/weather_sunset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/local/hf_weather-card/icons/static/weather_sunset.svg -------------------------------------------------------------------------------- /custom_components/hf_weather/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/manifest.json -------------------------------------------------------------------------------- /custom_components/hf_weather/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/translations/en.json -------------------------------------------------------------------------------- /custom_components/hf_weather/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaonianzhentan/hf_weather/HEAD/custom_components/hf_weather/weather.py --------------------------------------------------------------------------------