Version 0.4.3
* Fixed config parameter to disable switches/sensors not optional
This commit is contained in:
parent
20e0a9b909
commit
857af55e99
@ -46,3 +46,7 @@
|
|||||||
## 0.4.2
|
## 0.4.2
|
||||||
|
|
||||||
* Added config parameter to disable switches/sensors
|
* Added config parameter to disable switches/sensors
|
||||||
|
|
||||||
|
## 0.4.4
|
||||||
|
|
||||||
|
* Fixed config parameter to disable switches/sensors not optional
|
2
index.js
2
index.js
@ -17,7 +17,7 @@ function NeatoVacuumRobotPlatform(log, config) {
|
|||||||
this.serial = "1-3-3-7";
|
this.serial = "1-3-3-7";
|
||||||
this.email = config['email'];
|
this.email = config['email'];
|
||||||
this.password = config['password'];
|
this.password = config['password'];
|
||||||
this.hiddenServices = config['disabled'];
|
this.hiddenServices = ('disabled' in config ? config['disabled'] : '');
|
||||||
|
|
||||||
this.careNavigation = ('extraCareNavigation' in config && config['extraCareNavigation'] ? 2 : 1);
|
this.careNavigation = ('extraCareNavigation' in config && config['extraCareNavigation'] ? 2 : 1);
|
||||||
debug("Extra Care Navigation: " + this.careNavigation);
|
debug("Extra Care Navigation: " + this.careNavigation);
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "homebridge-neato",
|
"name": "homebridge-neato",
|
||||||
"version": "0.4.2",
|
"version": "0.4.4",
|
||||||
"description": "A Neato vacuum robot plugin for homebridge.",
|
"description": "A Neato vacuum robot plugin for homebridge.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
Loading…
Reference in New Issue
Block a user