homebridge-intesisbox
v0.0.1
Published
Homebridge plugin for Intesisbox
Downloads
14
Maintainers
Readme
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
Install homebridge:
npm install -g homebridge
Install this plugin:
npm install -g homebridge-intesisbox
Update your configuration file. See configuration options below.
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 beIntesisbox
name
defaults toIntesisbox
but can be set to whatever your device to be called, likeAir Conditioner
host
must be the IP address of your deviceport
defaults to3310
but can be overridennumber
defaults to1
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.