ddenisyuk / homebridge-gree-heatercooler

Control Gree and partners Air Conditioning from Homebridge
26 stars 15 forks source link

Control Gree and partners Air Conditioning with homekit

This plugins is based on https://github.com/duculete/homebridge-gree-ac. Diff:

Should work with all Gree and partners (EWPE Smart APP) AC.

Requirements

For each AC device you need to add an accessory and specify the IP address of the device.

Usage Example:

{
    "bridge": {
        "name": "Homebridge",
        "username": "CC:22:3D:E3:CE:30",
        "port": 51826,
        "pin": "123-45-568"
    },
    "accessories": [
        {
            "accessory": "GreeHeaterCooler",
            "host": "192.168.1.X",
            "name": "Living room AC",
            "acModel": "Gree V2",
            "useTargetTempAsCurrent": true, // for AC W/O builded in temp sensor 
            "updateInterval": 10000
        },
        {
            "accessory": "GreeHeaterCooler",
            "host": "192.168.1.Y",
            "name": "Bedroom AC",
            "acModel": "C&H",
            "acTempSensorShift": 40,
            "updateInterval": 10000
        }
    ]
}