├── README.md ├── broadlink ├── README.md └── custom_components │ └── broadlink │ ├── __init__.py │ ├── const.py │ ├── manifest.json │ ├── sensor.py │ ├── services.yaml │ └── switch.py ├── hf_weather ├── README.md ├── custom_components │ └── hf_weather │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── heweather_forecast.cpython-36.pyc │ │ └── weather.cpython-37.pyc │ │ ├── manifest.json │ │ └── weather.py └── www │ └── custom-lovelace │ └── hf_weather-card │ ├── hf_weather-card.js │ ├── hf_weather-card_new.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 └── xiaomi_miio_airconditioningcompanion ├── README.md └── custom_components └── xiaomi_miio_airconditioningcompanion ├── __init__.py ├── climate.py ├── manifest.json └── services.yaml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/README.md -------------------------------------------------------------------------------- /broadlink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/broadlink/README.md -------------------------------------------------------------------------------- /broadlink/custom_components/broadlink/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/broadlink/custom_components/broadlink/__init__.py -------------------------------------------------------------------------------- /broadlink/custom_components/broadlink/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/broadlink/custom_components/broadlink/const.py -------------------------------------------------------------------------------- /broadlink/custom_components/broadlink/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/broadlink/custom_components/broadlink/manifest.json -------------------------------------------------------------------------------- /broadlink/custom_components/broadlink/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/broadlink/custom_components/broadlink/sensor.py -------------------------------------------------------------------------------- /broadlink/custom_components/broadlink/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/broadlink/custom_components/broadlink/services.yaml -------------------------------------------------------------------------------- /broadlink/custom_components/broadlink/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/broadlink/custom_components/broadlink/switch.py -------------------------------------------------------------------------------- /hf_weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/README.md -------------------------------------------------------------------------------- /hf_weather/custom_components/hf_weather/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hf_weather/custom_components/hf_weather/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/custom_components/hf_weather/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /hf_weather/custom_components/hf_weather/__pycache__/heweather_forecast.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/custom_components/hf_weather/__pycache__/heweather_forecast.cpython-36.pyc -------------------------------------------------------------------------------- /hf_weather/custom_components/hf_weather/__pycache__/weather.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/custom_components/hf_weather/__pycache__/weather.cpython-37.pyc -------------------------------------------------------------------------------- /hf_weather/custom_components/hf_weather/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/custom_components/hf_weather/manifest.json -------------------------------------------------------------------------------- /hf_weather/custom_components/hf_weather/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/custom_components/hf_weather/weather.py -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/hf_weather-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/hf_weather-card.js -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/hf_weather-card_new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/hf_weather-card_new.js -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/hf_weather-more-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/hf_weather-more-info.js -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/README.md -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/cloudy-day-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/cloudy-day-1.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/cloudy-day-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/cloudy-day-2.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/cloudy-day-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/cloudy-day-3.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/cloudy-night-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/cloudy-night-1.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/cloudy-night-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/cloudy-night-2.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/cloudy-night-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/cloudy-night-3.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/cloudy.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/day.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/day.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/night.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/rainy-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/rainy-1.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/rainy-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/rainy-2.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/rainy-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/rainy-3.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/rainy-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/rainy-4.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/rainy-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/rainy-5.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/rainy-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/rainy-6.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/rainy-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/rainy-7.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/snowy-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/snowy-1.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/snowy-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/snowy-2.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/snowy-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/snowy-3.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/snowy-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/snowy-4.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/snowy-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/snowy-5.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/snowy-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/snowy-6.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/thunder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/thunder.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/weather-sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/weather-sprite.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/weather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/weather.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/weather_sagittarius.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/weather_sagittarius.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/weather_sunset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/animated/weather_sunset.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/cloudy-day-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/cloudy-day-1.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/cloudy-day-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/cloudy-day-2.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/cloudy-day-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/cloudy-day-3.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/cloudy-night-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/cloudy-night-1.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/cloudy-night-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/cloudy-night-2.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/cloudy-night-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/cloudy-night-3.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/cloudy.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/day.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/day.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/night.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/rainy-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/rainy-1.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/rainy-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/rainy-2.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/rainy-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/rainy-3.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/rainy-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/rainy-4.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/rainy-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/rainy-5.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/rainy-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/rainy-6.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/rainy-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/rainy-7.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/snowy-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/snowy-1.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/snowy-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/snowy-2.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/snowy-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/snowy-3.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/snowy-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/snowy-4.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/snowy-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/snowy-5.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/snowy-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/snowy-6.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/thunder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/thunder.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/weather-sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/weather-sprite.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/weather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/weather.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/weather_sagittarius.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/weather_sagittarius.svg -------------------------------------------------------------------------------- /hf_weather/www/custom-lovelace/hf_weather-card/icons/static/weather_sunset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/hf_weather/www/custom-lovelace/hf_weather-card/icons/static/weather_sunset.svg -------------------------------------------------------------------------------- /xiaomi_miio_airconditioningcompanion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/xiaomi_miio_airconditioningcompanion/README.md -------------------------------------------------------------------------------- /xiaomi_miio_airconditioningcompanion/custom_components/xiaomi_miio_airconditioningcompanion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xiaomi_miio_airconditioningcompanion/custom_components/xiaomi_miio_airconditioningcompanion/climate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/xiaomi_miio_airconditioningcompanion/custom_components/xiaomi_miio_airconditioningcompanion/climate.py -------------------------------------------------------------------------------- /xiaomi_miio_airconditioningcompanion/custom_components/xiaomi_miio_airconditioningcompanion/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/xiaomi_miio_airconditioningcompanion/custom_components/xiaomi_miio_airconditioningcompanion/manifest.json -------------------------------------------------------------------------------- /xiaomi_miio_airconditioningcompanion/custom_components/xiaomi_miio_airconditioningcompanion/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnk700i/ha_modified_components/HEAD/xiaomi_miio_airconditioningcompanion/custom_components/xiaomi_miio_airconditioningcompanion/services.yaml --------------------------------------------------------------------------------