npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

homebridge-gree-heatercooler-v2

v1.0.2

Published

Homebridge plugin for Gree air conditioners.

Downloads

60

Readme

homebridge-gree-heatercooler-v2

version license stats

Homebridge plugin for Gree air conditioners.

Install

$ npm install -g homebridge-gree-heatercooler-v2

Features

  • Info (get/set in config): model, name, serial number
  • Mode (get/set): auto, heat, cool(, fan, dry), off
    • Note: Fan & Dry features are controlled over a separate "fan" device, while clockwise means fan and counter clockwise means dry

      Home app's design is a bit confusing here, it might take some to get a hang of which direction is which

  • Current temperature (get)
  • Target temperature (get/set): granularity of 0.5 °C or 1 °F
  • Speed (get/set)
  • Display units (get/set): celsius, fahrenheit
  • Oscillate (get/set)
  • Auto oscillation by mode
  • X-Fan (set in config)
  • Light (get/set), as a standalone control

Limitations

  • Sensor: Gree's AC units don't update sensor data very often, sometimes interactions may be needed to refresh it
  • Status: Gree's AC units don't provide current status, it's calculated by comparing current temperature and target temperature
  • Speed: HomeKit doesn't support auto speed, 100% speed means auto
  • X-Fan: can only be set in config

Config

Params

  • accessory: Accessory name to load. Not compatible with other plugins with the same name.
  • address: Local IP address of the AC unit. It has to be connected to local network before using this plugin.
  • port: (default to 7000) Port used by AC unit. No need to change on most models.
  • mac: Physical (MAC) address of the AC unit. Required by some AC models, try to set this if you see "Device not found at..." error in the log. It must be just lower case letters and/or numbers.
  • model, name, serialNumber: Information of the AC unit. Does not affect functions.
  • nameFan: Name for fan device.
  • minimumTargetTemperature, maximumTargetTemperature: (in °C, default to 16-30) Range of target temperature supported by the AC unit. May vary depending on your model.
  • oscillation, autoOscillation: Oscillation settings. autoOscillation is for automation, for example: blow upwards automatically when switching to cool mode.
    • Valid modes
      • For oscillation: on, off
      • For auto oscillation: auto, cool, heat, fan, dry
    • Valid values:
      • For horizontal: default, full, left, centerLeft, center, centerRight, right
      • For vertical: default, full, fixedHighest, fixedHigher, fixedMiddle, fixedLower, fixedLowest, swingLowest, swingLower, swingMiddle, swingHigher, swingHighest
      • fallback: Use to fallback to auto oscillation settings. Only available in oscillation
    • Default:
      • Oscillation switch only controls horizontal oscillation between full range (full) and off (default)
      • When switching to auto mode, do not swing vertically (default)
      • When switching to cool mode, blow upwards (fixedHighest)
      • When switching to heat mode, blow downwards (fixedLowest)
      • When switching to fan and dry modes, swing vertically on full range (full)
  • xFan: (true | false, default to true) Keep the fan running for a while after shutting down from Dry or Cool mode. This helps to keep the filter from being damp, which could lead to mold growing on it. Recommend to leave on.
  • lightControl: (true | false, default to false) Show light control as a switch.
  • fakeSensor: (true | false, default to false) For those models without built-in temperature sensor. This option enables a fake sensor using target temperature as current. Use of this option disables detection of whether AC is actively heating/cooling or being idle at target temperature.
  • sensorOffset: (0 or 40, default to 0) Some models have an offset of 40 on temperature sensor to avoid negative values. If the temperature shown is abnormally high, set it to 40.
  • updateInterval: (in ms, default to 1000) Interval for refreshing current status of the AC unit.
  • retryInterval: (in ms, default to 5000) Retry interval when connnection fails.

Example

{
  "bridge": {
    "name": "Homebridge",
    "username": "CC:22:3D:E3:CE:30",
    "port": 51826,
    "pin": "031-45-154"
  },
  "accessories": [
    {
      "accessory": "GreeHeaterCooler",
      "address": "10.0.1.128",
      "port": 7000,
      "mac": "f4911e504354",    
      "model": "KFR-35GW(35592)FNhAc-A1(WIFI)",
      "name": "Living Room AC",
      "nameFan": "Living Room Fan",
      "serialNumber": "4R0099H012345",
      "minimumTargetTemperature": 16,
      "maximumTargetTemperature": 30,
      "oscillation": {
        "on": {
          "horizontal": "full",
          "vertical": "fallback"
        },
        "off": {
          "horizontal": "default",
          "vertical": "fallback"
        }
      },
      "autoOscillation": {
        "auto": {
          "horizontal": "default",
          "vertical": "default"
        },
        "cool": {
          "horizontal": "default",
          "vertical": "fixedHighest"
        },
        "heat": {
          "horizontal": "default",
          "vertical": "fixedLowest"
        },
        "fan": {
          "horizontal": "default",
          "vertical": "full"
        },
        "dry": {
          "horizontal": "default",
          "vertical": "full"
        }
      },
      "xFan": true,
      "lightControl": false,
      "fakeSensor": false,
      "sensorOffset": 0,
      "updateInterval": 1000,
      "retryInterval": 5000
    }
  ]
}

License

This project is released under the terms and conditions of the GPL license. See LICENSE for details.

Contact

This project is designed and developed by Elethom Hunter. You can reach me via:

Credits