├── .github └── workflows │ └── hacs.yml ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── assets ├── .gitkeep ├── amazon-alexa-system-alert.mp3 └── amazon-alexa.svg ├── examples ├── alexa_timer_notifications.yaml ├── helper_timer_monitor.yaml └── mqtt_timer_notifications.yaml ├── hacs.json ├── mqtt-hybrid-model.md ├── simple-timer-card.js └── voice-pe.md /.github/workflows/hacs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalgal/simple-timer-card/HEAD/.github/workflows/hacs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json 3 | *.log 4 | .DS_Store 5 | dist/ 6 | build/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalgal/simple-timer-card/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalgal/simple-timer-card/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalgal/simple-timer-card/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /assets/amazon-alexa-system-alert.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalgal/simple-timer-card/HEAD/assets/amazon-alexa-system-alert.mp3 -------------------------------------------------------------------------------- /assets/amazon-alexa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalgal/simple-timer-card/HEAD/assets/amazon-alexa.svg -------------------------------------------------------------------------------- /examples/alexa_timer_notifications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalgal/simple-timer-card/HEAD/examples/alexa_timer_notifications.yaml -------------------------------------------------------------------------------- /examples/helper_timer_monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalgal/simple-timer-card/HEAD/examples/helper_timer_monitor.yaml -------------------------------------------------------------------------------- /examples/mqtt_timer_notifications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalgal/simple-timer-card/HEAD/examples/mqtt_timer_notifications.yaml -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalgal/simple-timer-card/HEAD/hacs.json -------------------------------------------------------------------------------- /mqtt-hybrid-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalgal/simple-timer-card/HEAD/mqtt-hybrid-model.md -------------------------------------------------------------------------------- /simple-timer-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalgal/simple-timer-card/HEAD/simple-timer-card.js -------------------------------------------------------------------------------- /voice-pe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyalgal/simple-timer-card/HEAD/voice-pe.md --------------------------------------------------------------------------------