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.
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)
Xiaomi Roborock S50 2nd Generation (Roborock Vacuum S5)
Xiaomi Roborock S60 2nd Generation (Roborock Vacuum S6)
Display battery level, and notify on low battery.
Display battery charging state.
Display filter state.
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 torockrobo-vacuum-v1_xxxx
or roborock-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's a 1st Generation product, write rockrobo.vacuum.v1
or rockrobo.vacuum.c1
\
If it's a 2nd Generation product, write roborock.vacuum.s5
\
If it's a 3nd Generation product, write roborock.vacuum.s6
.
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
or false
to display or hide docked state for the vacuum.\
Set "enablePause" to true
or false
to display or hide pause button for the vacuum.
Restart Homebridge, and your Mi Robot Vacuum will be added to Home app.
MIT License