├── .github └── workflows │ ├── hacs_action.yml │ └── hassfest_validation.yml ├── .gitignore ├── README.md ├── custom_components └── sdnotify │ ├── __init__.py │ ├── binary_sensor.py │ └── manifest.json └── hacs.json /.github/workflows/hacs_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianegge/home-assistant-sdnotify/HEAD/.github/workflows/hacs_action.yml -------------------------------------------------------------------------------- /.github/workflows/hassfest_validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianegge/home-assistant-sdnotify/HEAD/.github/workflows/hassfest_validation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianegge/home-assistant-sdnotify/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/sdnotify/__init__.py: -------------------------------------------------------------------------------- 1 | DOMAIN = "sdnotify" 2 | -------------------------------------------------------------------------------- /custom_components/sdnotify/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianegge/home-assistant-sdnotify/HEAD/custom_components/sdnotify/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/sdnotify/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianegge/home-assistant-sdnotify/HEAD/custom_components/sdnotify/manifest.json -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianegge/home-assistant-sdnotify/HEAD/hacs.json --------------------------------------------------------------------------------