A Kobold vacuum robot plugin for homebridge.
Go to file
2019-09-23 12:12:18 +02:00
accessories Fixed a bug that caused the cleaning of all rooms at once 2019-09-23 12:12:18 +02:00
characteristics Added spot cleaning function with individual spot size (D7) 2019-09-23 11:48:35 +02:00
_config.yml Set theme jekyll-theme-cayman 2017-04-30 18:06:45 +02:00
.gitignore Added gitignore 2019-07-20 22:20:31 +02:00
CHANGELOG.md Added spot cleaning function with individual spot size (D7) 2019-09-23 11:48:35 +02:00
config.schema.json Add Schema for Config 2019-04-08 22:26:30 +02:00
index.js Added spot cleaning function with individual spot size (D7) 2019-09-23 11:48:35 +02:00
LICENSE Initial commit 2017-04-17 16:07:21 +02:00
package.json Bumped version to v0.7.0-beta.6 2019-09-23 11:48:50 +02:00
README.md Added spot cleaning function with individual spot size (D7) 2019-09-23 11:48:35 +02:00

homebridge-neato

npm npm GitHub last commit

This is a plugin for homebridge to control your Neato vacuum robot. You can download it via npm.

If you like this plugin, I would be very grateful for your support:

Buy Me A Coffee

Feel free to leave any feedback here.

Features

  • Start and pause house cleaning
    • Eco mode
    • Extra care navigation
    • Nogo lines
    • Zones
  • Spot cleaning
    • individual spot size (only D7)
    • repeat
  • Return to dock
  • Find the robot
  • Enable/Disable the schedule
  • Robot information
    • battery level
    • charging state
    • dock occupancy
    • model and firmware version
  • Automatic and periodic refresh for notifications
  • Multiple robots

Installation

  1. Install homebridge using: npm install -g homebridge
  2. Install this plugin using: npm install -g homebridge-neato
  3. If you don't have a Neato account yet create one here.
  4. 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 the cleaning was started via homekit so that you can activate automations after the cleaning is done. If you want to get robot state updates after starting the cleaning from the neato app or a 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 disabled accepts a list of switches/sensors that can be disabled in the neato homekit plugin (e.g. dock, dockstate, eco, schedule, findme, spot).

"platforms": [
	{
		"platform": "NeatoVacuumRobot",
		"email": "YourEmail",
		"password": "YourPassword",
		"refresh": "120",
		"disabled": ["dock", "dockstate", "eco", "nogolines", "extracare", "schedule", "findme", "spot"]
	}
]

Tested robots

  • BotVac Connected
  • BotVac D3 Connected
  • BotVac D4 Connected
  • BotVac D5 Connected
  • BotVac D6 Connected
  • BotVac D7 Connected

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 out new beta versions