homebridge-xiaomi-fan-hin v1.5.2
homebridge-xiaomi-fan
homebridge-xiaomi-fan is a plugin for homebridge which allows you to control Xiaomi Smartmi and Mija Fans! It should work with most smart fans from xiaomi.
The goal is to make the fan fully controllable from the native Homekit iOS app and Siri.
Features
- Integrates into homekit as a fan device
- Control power, speed, swing mode and switch between standard and natural wind
- Set oscillation angle
- Rotate fan to the left or right by 5°
- Turn on/off the buzzer
- Turn on/off the LEDs
- Set a shutdown timer
- Homekit automations
Known supported fan models
- zhimi.fan.sa1 (Mi Standing Fan)
- zhimi.fan.v2/v3 (Smartmi DC Pedestal Fan)
- zhimi.fan.za1 (Smartmi Inverter Pedestal Fan)
- zhimi.fan.za3 (Smartmi Standing Fan 2)
- zhimi.fan.za4 (Smartmi Standing Fan 2S)
- zhimi.fan.za5 (Smartmi Standing Fan 3)
- zhimi.fan.fa1 (Mijia DC Circulating Fan)
- dmaker.fan.1c (Mi Smart Standing Fan 1C)
- dmaker.fan.p5 (Mi Smart Standing Fan 1X)
- dmaker.fan.p8 (Mi Smart Standing Fan 1C CN)
- dmaker.fan.p9 (Mi Smart Tower Fan)
- dmaker.fan.p10 (Mi Smart Standing Fan 2)
- dmaker.fan.p11 (Mi Smart Standing Fan Pro)
- dmaker.fan.p15 (Mi Smart Standing Fan Pro EU)
Installation
If you are new to homebridge, please first read the homebridge documentation. If you are running on a Raspberry, you will find a tutorial in the homebridge wiki.
Install homebridge:
sudo npm install -g homebridgeInstall homebridge-xiaomi-fan:
sudo npm install -g homebridge-xiaomi-fanConfiguration
Add the xiaomifan platform in config.json in your home directory inside .homebridge.
Add your Fan or multiply Fans in the devices or fans array.
Example configuration:
{
"platforms": [
{
"platform": "xiaomifan",
"devices": [
{
"name": "Xiaomi Fan 2s",
"ip": "192.168.0.40",
"token": "8305d8fba83f94bb5ad8f963b6c84c84",
"pollingInterval": 10,
"moveControl": true,
"buzzerControl": true,
"ledControl": true,
"naturalModeControl": true,
"shutdownTimer": true,
"angleButtons": [
5,
60,
100
]
}
]
}
]
}Token
For the plugin to work the device token is required. For methods on how to find the token refer to this guide obtaining mi device token.
Configuration
Platform Configuration fields
Fan Configuration fields
namerequired Name of your accessory.iprequired ip address of your Fan.tokenrequired The device token of your Fan.deviceIdoptional New fan devices which use the miot protocol require the device id to be specified. The deviceId will be automatically retrieved by the plugin but if there is trouble you can manually specify it. Default: "" (not specified)modeloptional The fan model. If specified then the accessory will be created instantly without the need to first discover and identify the fan. Default: "" (not specified)prefsDiroptional The directory where the fan device info will be stored. Default: "~/.homebridge/.xiaomiFan"pollingIntervaloptional The fan state background polling interval in seconds. Default: 5deepDebugLogoptional Enables additional more detailed debug log. Useful when trying to figure out issues with the plugin. Default: falsebuzzerControloptional Whether the buzzer service is enabled. This allows to turn on/off the fan buzzer. On Smartmi fans the rotation direction switch can be used to select between loud or quiet buzzer level. Default: trueledControloptional Whether the led service is enabled. This allows to turn on/off the fan LED. Default: truenaturalModeControloptional Show a switch which allows to quickly enable/disable the natural mode. Only on supported devices! Default: truesleepModeControloptional Show a switch which allows to quickly enable/disable the sleep mode. Only on supported devices! Default: truemoveControloptional Whether the move service is enabled. This allows to move the fan in 5° to the left or right. Only on supported devices! Default: falseshutdownTimeroptional Show a slider (as light bulb) which allows to set a shutdown timer in minutes. Default: falseangleButtonsoptional Whether the angle buttons service is enabled. This allows to create buttons which can switch between different oscillation angles. Only on supported devices! Default: "" (disabled)- Set an array of numeric values. Possible values depend on the fan model
- Some fans support predefined angle buttons, in the case if the property is not specified the angle buttons are retrieved from the fan and displayed as switches. If you want to prevent that behaviour set the property value as an empty array [] or false
- Tapping the active oscillation angle button will disable oscillation completely
ioniserControloptional Show a switch which allows to quickly enable/disable the ioniser on your fan. Only on supported devices! Default: falsefanLevelControloptional Show fan level switches which allow to change the fan level. Only on supported devices! Default: true
Troubleshooting
If you have any issues with the plugin or fan services then you can run homebridge in debug mode, which will provide some additional information. This might be useful for debugging issues.
Homebridge debug mode:
homebridge -DDeep debug log, add the following to your config.json:
"deepDebugLog": trueThis will enable additional extra log which might be helpful to debug all kind of issues.
Special thanks
miio - the Node.js remote control module for Xiaomi Mi devices.
HAP-NodeJS & homebridge - for making this possible.