Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.38 KB

README.md

File metadata and controls

31 lines (23 loc) · 1.38 KB

homebridge-gz-yeti

WIP

My initial take on a Homebridge plugin dor the Goal Zero Yeti power stations (Lithium Ion powered generator). This provides remote power capability for 12VDC, AC power and USB power, shows the charge state of the battery, and the temperature of the Yeti itself.

Usage:

Configure it as follows:

    {
        "accessory": "gz-yeti",
        "service": "Switch",
        "name": "Yeti",
        "model": "Yeti 3000",
        "firmwareversion": "1.2.3",
        "macaddress": "3C71BF7D7810",
        "url": "[your Yeti's IP Address]"
    }

Note:

  • Only the url is critical, the rest of the fields are for information or future development. These values can be found in the Yeti app.
  • name is the name of the device as it appears in Homekit
  • model appears under the detailed info page in the settings page for the device in Home.app.
  • macaddress appears under the detailed info page in the settings page for the device in Home.app.
  • firmware version is currently not used, it's there in case any future firmware updates cause breakage.
  • Siri responds to "Turn AC Power on/off", "Turn 12 volt power on/off", "Turn USB power on/off"

Credit goes to dinmammas for his homebridge-robonect plugin. It provided a basic enough example to use, so any similarities are intentional.