Recipes
Copy-paste-ready automations, organized by problem. Each recipe stands alone — pick the one that matches your situation. New to Hassette? Getting Started covers installing and running your first app.
- Motion-Activated Lights. Lights that respond to motion and turn themselves off after a quiet period.
- Debounce Sensor Changes. Sensors that report noisy, rapid-fire readings you want to ignore until a value stabilizes.
- Monitor Sensor Thresholds. A reading crosses a limit and you need to act on it immediately.
- Daily Notification. Recurring tasks that need to fire at the same time every day.
- React to a Service Call. You want to run custom logic whenever a specific HA service is called.
- Vacation Mode Toggle. Turning a behavior on or off while the app keeps running — no restart needed.
See Also
- Core Concepts. The building blocks all recipes use: the
Bus(event subscriptions),Scheduler(timers),Api(HA service calls), andStates(entity state access). - Getting Started. Installation and your first app.