A homebridge plugin that exposes to Homekit a switch that is momentarily turned on using a schedule derived from a CRON job expression.
Configuration can be done using Homebridge Config UI X.
"accessories": [
{
"accessory": "CronSwitch",
"name": "Turn Something On Every 5 Seconds Switch",
"cron": "0/5 * * * * *"
}
]
The above configuration will result in this:
- accessory: The identifier for the accessory (CronSwitch).
- name: The name of the switch exposed.
- cron: The cron expression.