homebridge-xiaomi-robot-vacuum
v1.4.4
Published
Xiaomi Mi robot vacuum plugin for Homebridge. Fork from https://github.com/seikan/homebridge-xiaomi-mi-robot-vacuum
Downloads
50
Maintainers
Readme
homebridge-xiaomi-robot-vacuum
This project is forked from homebridge-xiaomi-mi-robot-vacuum.
This is Xiaomi Mi Robot Vacuum plugin for Homebridge. Since Apple Homekit is not supporting vacuum cleaner device yet, this plugin will add the robot as Fan to your Home app.
Features
Switch on / off. When off, it will returning to charging dock automatically.
Control suction power by adjust the fan speed.
Xiaomi Mi Robot 1st Generation (Roborock Vacuum V1)
- Quiet (1 -38%)
- Balance (39 - 60%)
- Turbo (61 - 77%)
- Max Speed (> 77%)
Xiaomi Roborock S50 2nd Generation (Roborock Vacuum S5)
- Mopping (1 -15%)
- Quiet (16 -38%)
- Balance (39 - 60%)
- Turbo (61 - 75%)
- Max Speed (> 76%)
Display battery level, and notify on low battery.
Display battery charging state.
Display filter state.
Installation
Install required packages.
npm install -g homebridge-xiaomi-robot-vacuum miio
Remove Mi Robot Vaccum from your Mi Home app.
Press "Power" and "Home" button simultaneously and hold for 3 seconds on your Mi Robot Vacuum to reset the Wi-Fi.
It will advertised a new Wi-Fi spot similar to
rockrobo-vacuum-v1_xxxx
orroborock-vacuum-s5_xxxx
.Connect your PC to that Wi-Fi network.
Open command prompt or terminal. Run following command to discover the device:
miio discover --sync
Notes: This will take about a minute or two.
Wait until you get output similar to this:
Device ID: 49466045 Model info: Unknown Address: 192.168.8.1 Token: 6f7a65786550386b755a6b526666744d via auto-token Support: Unknown
Record down the value value for
Token
as we need it later.Disconnect from robot Wi-Fi network.
Open Mi Home app and add the device as usual.
In Mi Home app, get the Robot Vacuum IP address from General Settings > Network Info.
Check the model name of the vacuum cleaner.
If it is a 1st Generation, writerockrobo.vacuum.v1
.
If it's a 2nd Generation product, writeroborock.vacuum.s5
.Add these values to
config.json
."accessories": [ { "accessory": "MiRobotVacuum", "name": "Vacuum Cleaner", "model": "MODEL_DISCOVERED_FROM_STEP_12", "ip": "IP_ADDRESS_OF_THE_ROBOT", "token": "TOKEN_DISCOVERED_FROM_STEP_7", "showDock": false, "enablePause": false } ]
Set "showDock" to
true
orfalse
to display or hide docked state for the vacuum.
Set "enablePause" totrue
orfalse
to display or hide pause button for the vacuum.Restart Homebridge, and your Mi Robot Vacuum will be added to Home app.
License
See the LICENSE file for license rights and limitations (MIT).