Renamed spot repeat button
This commit is contained in:
parent
5402123340
commit
12dd6d4676
24
README.md
24
README.md
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
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).
|
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).
|
||||||
|
|
||||||
If you like this plugin, I would be very grateful for your support:
|
If you like this plugin and find it useful, I would be very grateful for your support:
|
||||||
|
|
||||||
<a href="https://www.buymeacoffee.com/2D1nUuK36" target="_blank"><img width="140" src="https://bmc-cdn.nyc3.digitaloceanspaces.com/BMC-button-images/custom_images/orange_img.png" alt="Buy Me A Coffee"></a>
|
<a href="https://www.buymeacoffee.com/2D1nUuK36" target="_blank"><img width="140" src="https://bmc-cdn.nyc3.digitaloceanspaces.com/BMC-button-images/custom_images/orange_img.png" alt="Buy Me A Coffee"></a>
|
||||||
|
|
||||||
@ -13,23 +13,23 @@ Feel free to leave any feedback [here](https://github.com/naofireblade/homebridg
|
|||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- Start and pause house cleaning
|
- House Cleaning
|
||||||
- Eco mode
|
- Eco mode
|
||||||
- Extra care navigation
|
- Extra care navigation
|
||||||
- Nogo lines
|
- Nogo lines
|
||||||
- Zones
|
- Zone cleaning
|
||||||
- Spot cleaning
|
- Spot cleaning
|
||||||
- individual spot size (only D7)
|
- Individual spot size (only D7)
|
||||||
- repeat
|
- Clean twice
|
||||||
- Return to dock
|
- Return to dock
|
||||||
- Find the robot
|
- Find the robot
|
||||||
- Enable/Disable the schedule
|
- Schedule (de)activation
|
||||||
- Robot information
|
- Robot information
|
||||||
- battery level
|
- Battery level
|
||||||
- charging state
|
- Charging state
|
||||||
- dock occupancy
|
- Dock occupancy
|
||||||
- model and firmware version
|
- Model and firmware version
|
||||||
- Automatic and periodic refresh for notifications
|
- Automatic or periodic refresh of robot state
|
||||||
- Multiple robots
|
- Multiple robots
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
@ -89,4 +89,4 @@ Many thanks go to
|
|||||||
- [ghulands](https://github.com/ghulands) for finding and fixing a bug when no robot is associated with the neato account
|
- [ghulands](https://github.com/ghulands) for finding and fixing a bug when no robot is associated with the neato account
|
||||||
- [Berkay](https://github.com/btutal) for adding the schema file to use the plugin with homebridge-config-ui-x
|
- [Berkay](https://github.com/btutal) for adding the schema file to use the plugin with homebridge-config-ui-x
|
||||||
- [Antoine de Maleprade](https://github.com/az0uz) for adding the zone cleaning feature
|
- [Antoine de Maleprade](https://github.com/az0uz) for adding the zone cleaning feature
|
||||||
- [DJay](https://github.com/DJay-X) for testing out new beta versions
|
- [DJay](https://github.com/DJay-X) for testing out tons of new beta versions
|
@ -4,7 +4,7 @@ module.exports = function (Characteristic, CustomUUID)
|
|||||||
{
|
{
|
||||||
let SpotRepeat = function ()
|
let SpotRepeat = function ()
|
||||||
{
|
{
|
||||||
Characteristic.call(this, 'Spot ↺', CustomUUID.SpotCleanRepeat);
|
Characteristic.call(this, 'Spot 2x', CustomUUID.SpotCleanRepeat);
|
||||||
this.setProps({
|
this.setProps({
|
||||||
format: Characteristic.Formats.BOOL,
|
format: Characteristic.Formats.BOOL,
|
||||||
perms: [Characteristic.Perms.READ, Characteristic.Perms.WRITE]
|
perms: [Characteristic.Perms.READ, Characteristic.Perms.WRITE]
|
||||||
|
Loading…
Reference in New Issue
Block a user