0.0.1 • Published 5 years ago

homebridge-intesisbox v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

homebridge-intesisbox

Homebridge plugin for Intesisbox devices including ASCII and WMP/Wi-Fi gateways, integrating various reverse-cycle air conditioners by Daikin, Fujitsu, Mitsubishi, Panasonic, Toshiba, and others with Apple HomeKit for control from iPhones and other Apple devices

I use an Intesisbox FJ-RC-WMP-1 connected to a Fujitsu ducted unit (ARTG24LMLC) and this works great.

Installation

  1. Install homebridge:

    npm install -g homebridge
  2. Install this plugin:

    npm install -g homebridge-intesisbox
  3. Update your configuration file. See configuration options below.

  4. Restart homebridge.

Configuration

Add an accessory to your homebridge config.json, like:

{
  "accessories": [
    {
      "accessory": "Intesisbox",
      "name": "Air Conditioner",
      "host": "192.168.0.10"
    }
  ]
}

Fields:

  • accessory must always be Intesisbox
  • name defaults to Intesisbox but can be set to whatever your device to be called, like Air Conditioner
  • host must be the IP address of your device
  • port defaults to 3310 but can be overriden
  • number defaults to 1 but can be set to your unit number if you have multiple units connected to the same device

TODO

  • Turn into a platform plugin
  • Add device auto-discovery (DISCOVER command over UDP)

References

Acknowledgements

This package was originally forked from zylantha's first attempt but then completely rewritten, with reference to wailuen's homebridge-sensibo-sky plugin.