├── .github └── workflows │ └── hacs.yaml ├── README.md ├── custom_components └── switch_timer │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-312.pyc │ ├── config_flow.cpython-312.pyc │ └── entity.cpython-312.pyc │ ├── config_flow.py │ ├── manifest.json │ ├── services.yaml │ └── translations │ └── en.json └── hacs.json /.github/workflows/hacs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gh0stblizz4rd/ha-switch-timer/HEAD/.github/workflows/hacs.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gh0stblizz4rd/ha-switch-timer/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/switch_timer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gh0stblizz4rd/ha-switch-timer/HEAD/custom_components/switch_timer/__init__.py -------------------------------------------------------------------------------- /custom_components/switch_timer/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gh0stblizz4rd/ha-switch-timer/HEAD/custom_components/switch_timer/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /custom_components/switch_timer/__pycache__/config_flow.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gh0stblizz4rd/ha-switch-timer/HEAD/custom_components/switch_timer/__pycache__/config_flow.cpython-312.pyc -------------------------------------------------------------------------------- /custom_components/switch_timer/__pycache__/entity.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gh0stblizz4rd/ha-switch-timer/HEAD/custom_components/switch_timer/__pycache__/entity.cpython-312.pyc -------------------------------------------------------------------------------- /custom_components/switch_timer/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gh0stblizz4rd/ha-switch-timer/HEAD/custom_components/switch_timer/config_flow.py -------------------------------------------------------------------------------- /custom_components/switch_timer/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gh0stblizz4rd/ha-switch-timer/HEAD/custom_components/switch_timer/manifest.json -------------------------------------------------------------------------------- /custom_components/switch_timer/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gh0stblizz4rd/ha-switch-timer/HEAD/custom_components/switch_timer/services.yaml -------------------------------------------------------------------------------- /custom_components/switch_timer/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gh0stblizz4rd/ha-switch-timer/HEAD/custom_components/switch_timer/translations/en.json -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gh0stblizz4rd/ha-switch-timer/HEAD/hacs.json --------------------------------------------------------------------------------