From 8add65aa04adaa5bd7e2452fdbeeb4bd82853838 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Sun, 27 Feb 2022 12:07:04 -0800 Subject: [PATCH] neato: add default navigation mode --- plugins/neato/node-botvac | 2 +- plugins/neato/package-lock.json | 4 ++-- plugins/neato/package.json | 2 +- plugins/neato/src/main.ts | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/neato/node-botvac b/plugins/neato/node-botvac index 85ef94102..5b0886a2c 160000 --- a/plugins/neato/node-botvac +++ b/plugins/neato/node-botvac @@ -1 +1 @@ -Subproject commit 85ef94102c7dffe83d56f55f71d460d8e3707fab +Subproject commit 5b0886a2ca4d4821a8b9b5b9b8de5c7da1b91269 diff --git a/plugins/neato/package-lock.json b/plugins/neato/package-lock.json index 9e1c646ad..f1b66bcc6 100644 --- a/plugins/neato/package-lock.json +++ b/plugins/neato/package-lock.json @@ -1,12 +1,12 @@ { "name": "@scrypted/neato", - "version": "0.1.29", + "version": "0.1.30", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@scrypted/neato", - "version": "0.1.29", + "version": "0.1.30", "license": "Apache", "dependencies": { "axios": "^0.19.2", diff --git a/plugins/neato/package.json b/plugins/neato/package.json index 574b07699..6293ccb8c 100644 --- a/plugins/neato/package.json +++ b/plugins/neato/package.json @@ -1,6 +1,6 @@ { "name": "@scrypted/neato", - "version": "0.1.29", + "version": "0.1.30", "description": "A Neato plugin for Scrypted", "author": "Scrypted", "license": "Apache", diff --git a/plugins/neato/src/main.ts b/plugins/neato/src/main.ts index 3d69165cc..b92e1c6a0 100644 --- a/plugins/neato/src/main.ts +++ b/plugins/neato/src/main.ts @@ -47,7 +47,7 @@ class Neato extends ScryptedDeviceBase implements Refresh, StartStop, Pause, Doc } async start() { - this.robot.startCleaning(); + this.robot.startCleaning(1); this.pollChanges(); }