homebridge-fujitsu-anywair-ac
v0.0.9
Published
Fujitsu anywAir AC Plugin for Homebridge
Downloads
42
Maintainers
Readme
Fujitsu anywAir Plugin for Homebridge
The plugin creates the following Homekit accessories:
- Heater/Cooler - HEAT, COOL, and AUTO modes, fan speed, and swing, and remote control lock
- Dehumidifier - DRY mode, fan speed, and swing
- Fan - FAN mode, fan speed, and swing
Installation
The plugin may be installed via the Homebridge Config UI or via npm.
To install under the Homebridge UI, click on "Plugins" and search for "fujitsu-anywair".
If you are not using the Homebridge UI, install with npm install homebridge-fujitsu-anywair
.
Configuration
The easiest approach to configuration is to use the web-based Homebridge UI. If you aren't using the web-based UI, use the following sections to configure the plugin.
Required
The only required configuration for this plugin are the username, password, and IP address of the unit. Adding the following json configuration to the platforms area:
{
...
"platforms": [
{
"platform": "FJ-AC-WIFI-1B",
"name": "AC Name",
"host": "192.168.0.10",
"username": "admin",
"password": "admin",
}
]
}
Optional
Additional devices can be added as new platforms.
{
...
"platforms": [
{
"platform": "FJ-AC-WIFI-1B",
"name": "AC 1",
"host": "192.168.0.10",
"username": "admin-1",
"password": "password-1"
},
{
"platform": "FJ-AC-WIFI-1B",
"name": "AC 2",
"host": "192.168.0.11",
"username": "admin-2",
"password": "password-2"
}
]
}
Acknowledgments
- Based off of the MHACWIFI1-Lan Plugin
- https://github.com/rchrch/homebridge-mhacwifi1-lan