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.
@philask
Also works fine with the Intesisbox INWMPMHI001I000 unit.
-
Install homebridge:
npm install -g homebridge
-
Install this plugin:
npm install -g homebridge-intesisbox-v2
-
Update your configuration file. See configuration options below.
-
Restart homebridge.
Add an accessory to your homebridge config.json
, like:
{
"accessories": [
{
"accessory": "Intesisbox",
"name": "Air Conditioner",
"host": "192.168.0.10"
}
]
}
Fields:
accessory
must always beIntesisbox
name
defaults toIntesisbox
but can be set to whatever your device is to be called, likeAir Conditioner
host
must be the IP address of your deviceport
defaults to3310
but can be overriddennumber
defaults to1
but can be set to your unit number if you have multiple units connected to the same device
- Turn into a platform plugin
- Add device auto-discovery (
DISCOVER
command over UDP)
This package was originally forked from zylantha's first attempt but then completely rewritten, with reference to wailuen's homebridge-sensibo-sky plugin.
Improved by Phil Askey in June 2022.
Fork created to merge improvements by @philask and pull request changes proposed by @systemx-xx for the root repo.