0.0.1 • Published 4 years ago

homebridge-cron-switch v0.0.1

Weekly downloads
6
License
MIT
Repository
github
Last release
4 years ago

Homebridge CRON Switch

A homebridge plugin that exposes to Homekit a switch that is momentarily turned on using a schedule derived from a CRON job expression.

Configration

Configuration can be done using Homebridge Config UI X.

Sample Configuration

"accessories": [
    {
      "accessory": "CronSwitch",
      "name": "Turn Something On Every 5 Seconds Switch",
      "cron": "0/5 * * * * *"
    }   
]

The above configuration will result in this:

Switch

Configuration Definition

  • accessory: The identifier for the accessory (CronSwitch).
  • name: The name of the switch exposed.
  • cron: The cron expression.