3.3 KiB
homebridge-neato
This is a plugin for homebridge to control your Neato vacuum robot. You can download it via npm.
If you like this plugin and find it useful, I would be forever grateful for your support:
Feel free to leave any feedback here.
Features
- House Cleaning
- Eco mode
- Extra care navigation
- Nogo lines
- Zone cleaning
- Spot cleaning
- Individual spot size (only D7)
- Clean twice
- Return to dock
- Find the robot
- Schedule (de)activation
- Robot information
- Battery level
- Charging state
- Dock occupancy
- Model and firmware version
- Automatic or periodic refresh of robot state
- Multiple robots
Installation
- Install homebridge using:
npm install -g homebridge
- Install this plugin using:
npm install -g homebridge-neato
- If you don't have a Neato account yet, create one here.
- Update your configuration file. See the sample below.
Configuration
Add the following information to your config file. Change the values for email and password.
Simple
"platforms": [
{
"platform": "NeatoVacuumRobot",
"email": "YourEmail",
"password": "YourPassword"
}
]
Advanced
The following config contains advanced optional settings.
The parameter refresh is default set to auto and updates the robot state when a cleaning was started via homekit so that you can activate automations based on a successful cleaning. If you want to get robot state updates after starting the cleaning from outside of homekit as well (neato app or schedule), you have to set refresh to a static value in seconds e.g. 120
. You can disable background updates completely by setting this to 0
.
The parameter hidden accepts a list of switches/sensors that can be hidden from homekit (e.g. dock
, dockstate
, eco
, schedule
, find
, spot
).
"platforms": [
{
"platform": "NeatoVacuumRobot",
"email": "YourEmail",
"password": "YourPassword",
"refresh": "120",
"hidden": ["dock", "dockstate", "eco", "nogolines", "extracare", "schedule", "find", "spot"]
}
]
Tested robots
The plugin is successfully tested with all Neato Connected Robots.
Contributors
Many thanks go to
- ghulands for finding and fixing a bug when no robot is associated with the neato account
- Berkay for adding the schema file to use the plugin with homebridge-config-ui-x
- Antoine de Maleprade for adding the zone cleaning feature
- DJay for testing tons of new beta versions