-
Notifications
You must be signed in to change notification settings - Fork 2
Auto‐Reset
Martin Patfield edited this page Feb 17, 2026
·
6 revisions
Certain accessories can be configured to automatically reset after a specified time. This will return the accessory to its "default" state. For example, lights that are turned "on" will be turned "off" automatically, and locks that are "unlocked" will be "locked" automatically.
Note that the timer will be reset every time the accessory receives an "on/unlock" MQTT message.

Here is the list of currently supported accessories:
- AirPurifier
- CarbonDioxideSensor
- CarbonMonoxideSensor
- ContactSensor
- Fan (v2)
- HeaterCooler
- LeakSensor
- Lightbulb
- LockMechanism
- MotionSensor
- OccupancySensor
- Outlet
- SmokeSensor
- Switch
To configure via JSON, add the following to your accessory config:
{
"autoReset": {
"time": 2,
"units": "SECONDS"
}
}Valid values for units are MILLISECONDS, SECONDS, MINUTES, or HOURS.