├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── automation ├── audio.yaml ├── div.yaml └── soverom.yaml ├── binary_sensor.yaml ├── configuration.yaml ├── custom_components ├── effect_control.py ├── find.py ├── news.py ├── restore_states.py ├── resume_mp.py ├── sensor │ └── brain_fm.py ├── switch │ ├── gmusic.py │ └── switchmate.py └── tibber_prices.py ├── customize.yaml ├── group.yaml ├── input_select.yaml ├── lights.yaml ├── ml_script └── stovsuger.py ├── packages ├── alarm_clock.yaml ├── heating.yaml └── varmeteppe.yaml ├── scripts └── soverom.yaml ├── sensors.yaml └── switches.yaml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/README.md -------------------------------------------------------------------------------- /automation/audio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/automation/audio.yaml -------------------------------------------------------------------------------- /automation/div.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/automation/div.yaml -------------------------------------------------------------------------------- /automation/soverom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/automation/soverom.yaml -------------------------------------------------------------------------------- /binary_sensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/binary_sensor.yaml -------------------------------------------------------------------------------- /configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/configuration.yaml -------------------------------------------------------------------------------- /custom_components/effect_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/custom_components/effect_control.py -------------------------------------------------------------------------------- /custom_components/find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/custom_components/find.py -------------------------------------------------------------------------------- /custom_components/news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/custom_components/news.py -------------------------------------------------------------------------------- /custom_components/restore_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/custom_components/restore_states.py -------------------------------------------------------------------------------- /custom_components/resume_mp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/custom_components/resume_mp.py -------------------------------------------------------------------------------- /custom_components/sensor/brain_fm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/custom_components/sensor/brain_fm.py -------------------------------------------------------------------------------- /custom_components/switch/gmusic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/custom_components/switch/gmusic.py -------------------------------------------------------------------------------- /custom_components/switch/switchmate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/custom_components/switch/switchmate.py -------------------------------------------------------------------------------- /custom_components/tibber_prices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/custom_components/tibber_prices.py -------------------------------------------------------------------------------- /customize.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/group.yaml -------------------------------------------------------------------------------- /input_select.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/input_select.yaml -------------------------------------------------------------------------------- /lights.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/lights.yaml -------------------------------------------------------------------------------- /ml_script/stovsuger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/ml_script/stovsuger.py -------------------------------------------------------------------------------- /packages/alarm_clock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/packages/alarm_clock.yaml -------------------------------------------------------------------------------- /packages/heating.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/packages/heating.yaml -------------------------------------------------------------------------------- /packages/varmeteppe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/packages/varmeteppe.yaml -------------------------------------------------------------------------------- /scripts/soverom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/scripts/soverom.yaml -------------------------------------------------------------------------------- /sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/sensors.yaml -------------------------------------------------------------------------------- /switches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Danielhiversen/home-assistant_config/HEAD/switches.yaml --------------------------------------------------------------------------------