homebridge-kobold-Homaassis.../README.md

75 lines
2.4 KiB
Markdown
Raw Normal View History

# homebridge-neato
2017-04-30 14:17:21 +02:00
This is a plugin for [homebridge](https://github.com/nfarina/homebridge) to control your [Neato](https://www.neatorobotics.com/) vacuum robot. You can download it via [npm](https://www.npmjs.com/package/homebridge-neato).
Feel free to leave any feedback [here](https://github.com/naofireblade/homebridge-neato/issues).
2017-04-18 02:51:59 +02:00
If you update from a previous version 0.3.x you have to adapt your config (plugin is now a platform).
2017-06-07 10:48:11 +02:00
## Features
2017-04-18 02:51:59 +02:00
- Start and pause cleaning
2017-05-04 19:24:33 +02:00
- Return to dock\*
2017-04-18 02:51:59 +02:00
- Enable and disable schedule
- Enable and disable eco mode
- Get battery info
2017-04-28 18:12:22 +02:00
- Get dock info
- Periodic refresh of robot state
- Support for multiple robots
- Extra care navigation
\* Available after some seconds of cleaning.
2017-05-04 19:24:33 +02:00
2017-06-07 10:48:11 +02:00
## Installation
2017-04-30 14:17:21 +02:00
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](https://www.neatorobotics.com/create-account/).
4. Update your configuration file. See the sample below.
2017-06-07 10:48:46 +02:00
## Configuration
2017-06-07 10:51:14 +02:00
Add the following information to your config file. Change the values for email and password.
2017-06-07 10:48:46 +02:00
### Simple
```json
"platforms": [
{
"platform": "NeatoVacuumRobot",
"email": "YourEmail",
"password": "YourPassword"
}
]
```
2017-06-07 10:48:46 +02:00
### Advanced
2017-06-07 10:47:01 +02:00
The following config contains advanced optional settings that are off when not specified.
The parameter **refresh** sets in what interval (seconds) changes of the robot state will be pushed to homekit. The minimum refresh time is 60 seconds. You need this only when you set up rules based on the robot state and start him outside of homekit (e.g. with the Neato app).
The parameter **extraCareNavigation** sets if supporting models (currently Neato D3 and D5) should take extra care of your furniture while cleaning.
The parameter **disabled** accepts a list of switches/sensors that can be disabled in the neato homekit plugin (e.g. dock, dockstate, eco, schedule).
```json
"platforms": [
2017-04-18 02:51:59 +02:00
{
"platform": "NeatoVacuumRobot",
2017-04-18 02:51:59 +02:00
"email": "YourEmail",
"password": "YourPassword",
"refresh": "120",
"extraCareNavigation": true,
"disabled": ["dock", "dockstate", "eco"]
2017-04-18 02:51:59 +02:00
}
]
```
2017-06-07 10:48:11 +02:00
## Tested robots
- BotVac Connected (Firmware 2.2.0)
- BotVac D3 Connected
2017-05-20 13:34:21 +02:00
- BotVac D5 Connected
If you have another connected neato robot, please [tell me](https://github.com/naofireblade/homebridge-neato/issues) about your experience with this plugin.