Homebridge Shortcuts Buttons
    Preparing search index...

    Interface HSBConfig

    interface HSBConfig {
        accessoryName: string;
        callbackCommandTimeout: number;
        callbackCommandType:
            | "Default (display notification)"
            | "Custom unix command"
            | "Shortcut name";
        callbackCustomCommand?: string;
        callbackServerEnabled: boolean;
        callbackServerHostname: string;
        callbackServerPort: number;
        callbackServerProtocol: "http"
        | "https";
        name: string;
        services: { serviceName: string; shortcutName: string }[];
        serviceType: "Outlet" | "Switch";
    }

    Hierarchy

    • Pick<PlatformConfig, "_bridge" | "platform">
      • HSBConfig
    Index

    Properties

    accessoryName: string

    Display name of the platform accessory.

    "Shortcuts"
    
    callbackCommandTimeout: number

    The time in milliseconds that the x-callback-url server should wait for the callback command execution to complete before timing out.

    5000
    
    callbackCommandType:
        | "Default (display notification)"
        | "Custom unix command"
        | "Shortcut name"

    With the default option, after the shortcut completion, a notification with the outcome of the shortcut run is displayed on the host running Homebrige. If you choose to customize the callback behaviour, you have two choices: use any unix command that your host is able to execute, or just use another shortcut to handle the callback if you like. Depending on your choice, you must complete the next field accordingly. Please see the related documentation for more detail.

    "Default (display notification)"
    
    callbackCustomCommand?: string

    Either a unix command or the name of a shortcut to run, depending on the value selected in the previous field. In the former case, all the content of the field will be treated as a command and executed: in the latter, this field expects just the plain name of the shortcut as displayed in the Shortcuts app. If you left the previous field on the default value, any text inserted here will be ignored. You can also read input parameters from your custom command/shortcut. Please see the related documentation for more detail.

    callbackServerEnabled: boolean

    The plugin will wait for the shortcut to complete its run, and will execute a callback action of your choice.

    true
    
    callbackServerHostname: string

    IPv4 address or hostname to expose the internal x-callback-url http server (must be accessible from a browser on the machine running Homebridge).

    "127.0.0.1"
    
    callbackServerPort: number

    A free port number for the internal x-callback-url HTTP server.

    63963
    
    callbackServerProtocol: "http" | "https"

    If you access other Homebridge services (e.g. UI) behind a reverse proxy with TLS certificate installed, you may want to access the x-callback-url server via https as well.

    "http"
    
    name: string

    Display name of the platform bridge.

    "ShortcutsButtons"
    
    services: { serviceName: string; shortcutName: string }[]

    Add a new item to this list for every Apple Shortcut you want to be able to launch. The machine running Homebridge must have access to every shortcut listed here (i.e. the macOS user must be logged into the iCloud account where the shortcuts are stored). If you change the name of a shortcut from the Shortcuts app remember to update it here too.

    Type declaration

    • serviceName: string

      A title to display for this button.

    • shortcutName: string

      The name of the Apple Shortcut to launch, as displayed in your Shortcuts app.

    1

    serviceType: "Outlet" | "Switch"

    Display the shortcuts buttons as Outlets or as Switches. See the related documentation for a visual preview of the two options in the Apple Home app.

    "Outlet"