Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

homebridge-shell-lock

benzman817GPL-3.00.0.1

Homebridge plugin for lock using shell commands

homebridge-plugin, homebridge, plugin, lock, smart, homekit, siri, shell, cmd

readme

homebridge-shell-lock

A lock that can trigger shell commands.

Configuration

Example config.json:

{
    "platforms": [
        {
            "platform": "ShellLockPlatform",
            "cache_directory": "./.node-persist/storage", // (optional, default: "./.node-persist/storage")
            "locks": [
                {
                    "id": "someLockId1",
                    "name": "Front Door",
                    "lockCommand": "ls -l",
                    "unlockCommand": "ps aux",
                    "autoLock": 5000 // (optional)
                }
            ]
        }
    ]
}

changelog

0.0.1

Initial release version.