├── .gitignore ├── LICENSE ├── README.md ├── broadlink_s1c ├── README.md └── custom_components │ └── broadlink_s1c │ ├── __init__.py │ └── sensor.py ├── date_notifier ├── README.md └── custom_components │ └── date_notifier │ └── __init__.py ├── shabbat_times ├── README.md └── custom_components │ └── shabbat_times │ ├── __init__.py │ └── sensor.py ├── switcher_aio ├── README.md └── custom_components │ └── switcher_aio │ ├── __init__.py │ └── services.yaml └── switcher_heater ├── README.md └── custom_components └── switcher_heater ├── __init__.py └── switch.py /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomerFi/home-assistant-custom-components/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomerFi/home-assistant-custom-components/HEAD/README.md -------------------------------------------------------------------------------- /broadlink_s1c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomerFi/home-assistant-custom-components/HEAD/broadlink_s1c/README.md -------------------------------------------------------------------------------- /broadlink_s1c/custom_components/broadlink_s1c/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /broadlink_s1c/custom_components/broadlink_s1c/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomerFi/home-assistant-custom-components/HEAD/broadlink_s1c/custom_components/broadlink_s1c/sensor.py -------------------------------------------------------------------------------- /date_notifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomerFi/home-assistant-custom-components/HEAD/date_notifier/README.md -------------------------------------------------------------------------------- /date_notifier/custom_components/date_notifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomerFi/home-assistant-custom-components/HEAD/date_notifier/custom_components/date_notifier/__init__.py -------------------------------------------------------------------------------- /shabbat_times/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomerFi/home-assistant-custom-components/HEAD/shabbat_times/README.md -------------------------------------------------------------------------------- /shabbat_times/custom_components/shabbat_times/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shabbat_times/custom_components/shabbat_times/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomerFi/home-assistant-custom-components/HEAD/shabbat_times/custom_components/shabbat_times/sensor.py -------------------------------------------------------------------------------- /switcher_aio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomerFi/home-assistant-custom-components/HEAD/switcher_aio/README.md -------------------------------------------------------------------------------- /switcher_aio/custom_components/switcher_aio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomerFi/home-assistant-custom-components/HEAD/switcher_aio/custom_components/switcher_aio/__init__.py -------------------------------------------------------------------------------- /switcher_aio/custom_components/switcher_aio/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomerFi/home-assistant-custom-components/HEAD/switcher_aio/custom_components/switcher_aio/services.yaml -------------------------------------------------------------------------------- /switcher_heater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomerFi/home-assistant-custom-components/HEAD/switcher_heater/README.md -------------------------------------------------------------------------------- /switcher_heater/custom_components/switcher_heater/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switcher_heater/custom_components/switcher_heater/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomerFi/home-assistant-custom-components/HEAD/switcher_heater/custom_components/switcher_heater/switch.py --------------------------------------------------------------------------------