2017-04-17 16:07:21 +02:00
|
|
|
"use strict";
|
2017-05-06 23:51:58 +02:00
|
|
|
var inherits = require('util').inherits,
|
|
|
|
debug = require('debug')('homebridge-neato'),
|
|
|
|
botvac = require('node-botvac'),
|
2017-04-17 16:07:21 +02:00
|
|
|
|
2017-05-06 23:51:58 +02:00
|
|
|
Service,
|
2017-06-05 16:46:45 +02:00
|
|
|
Characteristic
|
2017-04-17 16:07:21 +02:00
|
|
|
|
|
|
|
module.exports = function (homebridge) {
|
|
|
|
Service = homebridge.hap.Service;
|
|
|
|
Characteristic = homebridge.hap.Characteristic;
|
2017-06-05 16:46:45 +02:00
|
|
|
homebridge.registerPlatform("homebridge-neato", "NeatoVacuumRobot", NeatoVacuumRobotPlatform);
|
2017-04-17 16:07:21 +02:00
|
|
|
}
|
|
|
|
|
2017-06-05 16:46:45 +02:00
|
|
|
function NeatoVacuumRobotPlatform(log, config) {
|
2017-04-17 16:07:21 +02:00
|
|
|
this.log = log;
|
|
|
|
this.serial = "1-3-3-7";
|
|
|
|
this.email = config['email'];
|
|
|
|
this.password = config['password'];
|
2017-07-24 19:52:32 +02:00
|
|
|
this.hiddenServices = config['disabled'];
|
2017-05-07 16:31:41 +02:00
|
|
|
|
2017-06-06 17:25:02 +02:00
|
|
|
this.careNavigation = ('extraCareNavigation' in config && config['extraCareNavigation'] ? 2 : 1);
|
|
|
|
debug("Extra Care Navigation: " + this.careNavigation);
|
|
|
|
|
2017-05-07 16:31:41 +02:00
|
|
|
// default off
|
|
|
|
this.refresh = ('refresh' in config ? parseInt(config['refresh']) : 0);
|
2017-05-06 23:51:58 +02:00
|
|
|
// must be integer and positive
|
2017-05-06 23:57:36 +02:00
|
|
|
this.refresh = (typeof this.refresh !=='number' || (this.refresh%1)!==0 || this.refresh < 0) ? 0 : this.refresh;
|
2017-05-06 23:51:58 +02:00
|
|
|
// minimum 60s
|
2017-05-20 19:41:25 +02:00
|
|
|
this.refresh = (this.refresh > 0 && this.refresh < 60) ? 60 : this.refresh;
|
2017-06-05 16:46:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
NeatoVacuumRobotPlatform.prototype = {
|
|
|
|
accessories: function(callback) {
|
|
|
|
this.accessories = [];
|
|
|
|
|
|
|
|
let that = this;
|
|
|
|
this.robots = this.getRobots(function () {
|
|
|
|
for (var i = 0; i < that.robots.length; i++) {
|
|
|
|
that.log("Found robot #" + (i+1) + ": " + that.robots[i].name);
|
|
|
|
var robotAccessory = new NeatoVacuumRobotAccessory(that.robots[i], that);
|
|
|
|
that.accessories.push(robotAccessory);
|
|
|
|
}
|
|
|
|
callback(that.accessories);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
getRobots: function(callback) {
|
|
|
|
debug("Get all robots");
|
|
|
|
let client = new botvac.Client();
|
|
|
|
let that = this;
|
|
|
|
client.authorize(this.email, this.password, false, function (error) {
|
|
|
|
if (error) {
|
|
|
|
that.log(error);
|
|
|
|
that.log.error("Can't log on to neato cloud. Please check your credentials.");
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
client.getRobots(function (error, robots) {
|
|
|
|
if (error) {
|
|
|
|
that.log(error);
|
|
|
|
that.log.error("Successful login but can't connect to your neato robot.");
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (robots.length === 0) {
|
|
|
|
that.log.error("Successful login but no robots associated with your account.");
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
that.robots = robots;
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function NeatoVacuumRobotAccessory(robot, platform) {
|
|
|
|
this.platform = platform;
|
|
|
|
this.log = platform.log;
|
|
|
|
this.refresh = platform.refresh;
|
2017-06-06 17:25:02 +02:00
|
|
|
this.careNavigation = platform.careNavigation;
|
2017-07-24 19:52:32 +02:00
|
|
|
this.hiddenServices = platform.hiddenServices;
|
2017-06-05 16:46:45 +02:00
|
|
|
this.robot = robot;
|
|
|
|
this.name = robot.name;
|
|
|
|
this.lastUpdate = null;
|
2017-05-06 23:51:58 +02:00
|
|
|
|
|
|
|
this.vacuumRobotCleanService = new Service.Switch(this.name + " Clean", "clean");
|
|
|
|
this.vacuumRobotGoToDockService = new Service.Switch(this.name + " Go to Dock", "goToDock");
|
|
|
|
this.vacuumRobotDockStateService = new Service.OccupancySensor(this.name + " Dock", "dockState");
|
|
|
|
this.vacuumRobotEcoService = new Service.Switch(this.name + " Eco Mode", "eco");
|
|
|
|
this.vacuumRobotScheduleService = new Service.Switch(this.name + " Schedule", "schedule");
|
|
|
|
this.vacuumRobotBatteryService = new Service.BatteryService("Battery", "battery");
|
|
|
|
|
2017-06-05 16:46:45 +02:00
|
|
|
this.updateRobotTimer();
|
2017-04-17 16:07:21 +02:00
|
|
|
}
|
|
|
|
|
2017-06-05 16:46:45 +02:00
|
|
|
|
|
|
|
NeatoVacuumRobotAccessory.prototype = {
|
2017-04-17 16:07:21 +02:00
|
|
|
identify: function (callback) {
|
2017-06-05 16:46:45 +02:00
|
|
|
let that = this;
|
|
|
|
this.updateRobot(function() {
|
|
|
|
// hide serial and secret in log
|
|
|
|
let _serial = that.robot._serial;
|
|
|
|
let _secret = that.robot._secret;
|
|
|
|
that.robot._serial = "*****";
|
|
|
|
that.robot._secret = "*****";
|
|
|
|
that.log(that.robot);
|
|
|
|
that.robot._serial = _serial;
|
|
|
|
that.robot._secret = _secret;
|
|
|
|
callback();
|
|
|
|
});
|
2017-04-17 16:07:21 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
getServices: function () {
|
2017-06-05 16:46:45 +02:00
|
|
|
debug(this.robot._serial);
|
2017-04-17 16:07:21 +02:00
|
|
|
this.informationService = new Service.AccessoryInformation();
|
|
|
|
this.informationService
|
2017-06-05 16:46:45 +02:00
|
|
|
.setCharacteristic(Characteristic.Name, this.robot.name)
|
2017-04-17 16:07:21 +02:00
|
|
|
.setCharacteristic(Characteristic.Manufacturer, "Neato Robotics")
|
2017-06-05 16:46:45 +02:00
|
|
|
.setCharacteristic(Characteristic.Model, "Coming soon")
|
|
|
|
.setCharacteristic(Characteristic.SerialNumber, this.robot._serial);
|
2017-04-17 16:07:21 +02:00
|
|
|
|
2017-05-06 23:51:58 +02:00
|
|
|
this.vacuumRobotCleanService.getCharacteristic(Characteristic.On).on('set', this.setClean.bind(this));
|
2017-04-17 16:07:21 +02:00
|
|
|
this.vacuumRobotCleanService.getCharacteristic(Characteristic.On).on('get', this.getClean.bind(this));
|
|
|
|
|
2017-05-06 23:51:58 +02:00
|
|
|
this.vacuumRobotGoToDockService.getCharacteristic(Characteristic.On).on('set', this.setGoToDock.bind(this));
|
|
|
|
this.vacuumRobotGoToDockService.getCharacteristic(Characteristic.On).on('get', this.getGoToDock.bind(this));
|
2017-04-22 22:57:09 +02:00
|
|
|
|
2017-05-06 23:51:58 +02:00
|
|
|
this.vacuumRobotDockStateService.getCharacteristic(Characteristic.OccupancyDetected).on('get', this.getDock.bind(this));
|
2017-04-17 16:07:21 +02:00
|
|
|
|
2017-05-06 23:51:58 +02:00
|
|
|
this.vacuumRobotEcoService.getCharacteristic(Characteristic.On).on('set', this.setEco.bind(this));
|
2017-04-17 16:07:21 +02:00
|
|
|
this.vacuumRobotEcoService.getCharacteristic(Characteristic.On).on('get', this.getEco.bind(this));
|
|
|
|
|
2017-05-06 23:51:58 +02:00
|
|
|
this.vacuumRobotScheduleService.getCharacteristic(Characteristic.On).on('set', this.setSchedule.bind(this));
|
2017-04-17 16:07:21 +02:00
|
|
|
this.vacuumRobotScheduleService.getCharacteristic(Characteristic.On).on('get', this.getSchedule.bind(this));
|
|
|
|
|
|
|
|
this.vacuumRobotBatteryService.getCharacteristic(Characteristic.BatteryLevel).on('get', this.getBatteryLevel.bind(this));
|
|
|
|
this.vacuumRobotBatteryService.getCharacteristic(Characteristic.ChargingState).on('get', this.getBatteryChargingState.bind(this));
|
|
|
|
|
2017-07-24 19:52:32 +02:00
|
|
|
this.services = [this.informationService, this.vacuumRobotCleanService, this.vacuumRobotBatteryService];
|
|
|
|
if (this.hiddenServices.indexOf('dock') === -1)
|
|
|
|
this.services.push(this.vacuumRobotGoToDockService);
|
|
|
|
if (this.hiddenServices.indexOf('dockstate') === -1)
|
|
|
|
this.services.push(this.vacuumRobotDockStateService);
|
|
|
|
if (this.hiddenServices.indexOf('eco') === -1)
|
|
|
|
this.services.push(this.vacuumRobotEcoService);
|
|
|
|
if (this.hiddenServices.indexOf('schedule') === -1)
|
|
|
|
this.services.push(this.vacuumRobotScheduleService);
|
|
|
|
|
|
|
|
return this.services;
|
2017-04-17 16:07:21 +02:00
|
|
|
},
|
|
|
|
|
2017-05-06 23:51:58 +02:00
|
|
|
setClean: function (on, callback) {
|
2017-04-17 16:07:21 +02:00
|
|
|
let that = this;
|
2017-06-05 16:46:45 +02:00
|
|
|
this.updateRobot(function (error, result) {
|
2017-05-06 23:51:58 +02:00
|
|
|
if (on) {
|
|
|
|
if (that.robot.canResume || that.robot.canStart) {
|
2017-06-05 16:46:45 +02:00
|
|
|
// wait for robot to start and then start a short timer to recognize when he can go to dock or is finished
|
2017-05-06 23:51:58 +02:00
|
|
|
setTimeout(function() {
|
|
|
|
clearTimeout(that.timer);
|
2017-06-05 16:46:45 +02:00
|
|
|
that.updateRobotTimer();
|
2017-05-06 23:51:58 +02:00
|
|
|
}, 10000);
|
|
|
|
|
|
|
|
if (that.robot.canResume) {
|
2017-06-05 16:46:45 +02:00
|
|
|
debug(that.name + ": Resume cleaning");
|
2017-05-06 23:51:58 +02:00
|
|
|
that.robot.resumeCleaning(callback);
|
|
|
|
}
|
|
|
|
else {
|
2017-06-06 17:25:02 +02:00
|
|
|
debug(that.name + ": Start cleaning (" + that.careNavigation + ")");
|
|
|
|
that.robot.startCleaning(that.robot.eco, that.careNavigation, callback);
|
2017-05-06 23:51:58 +02:00
|
|
|
}
|
2017-04-17 16:07:21 +02:00
|
|
|
}
|
|
|
|
else {
|
2017-06-05 16:46:45 +02:00
|
|
|
debug(that.name + ": Cant start, maybe already cleaning");
|
2017-05-06 23:51:58 +02:00
|
|
|
callback();
|
2017-04-17 16:07:21 +02:00
|
|
|
}
|
2017-05-06 23:51:58 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (that.robot.canPause) {
|
2017-06-05 16:46:45 +02:00
|
|
|
debug(that.name + ": Pause cleaning");
|
2017-05-06 23:51:58 +02:00
|
|
|
that.robot.pauseCleaning(callback);
|
|
|
|
}
|
|
|
|
else {
|
2017-06-05 16:46:45 +02:00
|
|
|
debug(that.name + ": Already stopped");
|
2017-05-06 23:51:58 +02:00
|
|
|
callback();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2017-04-17 16:07:21 +02:00
|
|
|
},
|
|
|
|
|
2017-05-06 23:51:58 +02:00
|
|
|
setGoToDock: function (on, callback) {
|
2017-04-17 16:07:21 +02:00
|
|
|
let that = this;
|
2017-06-05 16:46:45 +02:00
|
|
|
this.updateRobot(function (error, result) {
|
2017-05-06 23:51:58 +02:00
|
|
|
if (on) {
|
|
|
|
if (that.robot.canPause) {
|
2017-06-05 16:46:45 +02:00
|
|
|
debug(that.name + ": Pause cleaning to go to dock");
|
2017-05-06 23:51:58 +02:00
|
|
|
that.robot.pauseCleaning(function (error, result) {
|
|
|
|
setTimeout(function() {
|
|
|
|
debug("Go to dock");
|
|
|
|
that.robot.sendToBase(callback);
|
|
|
|
}, 1000);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else if (that.robot.canGoToBase)
|
|
|
|
{
|
2017-06-05 16:46:45 +02:00
|
|
|
debug(that.name + ": Go to dock");
|
2017-05-06 23:51:58 +02:00
|
|
|
that.robot.sendToBase(callback);
|
|
|
|
}
|
|
|
|
else {
|
2017-06-05 16:46:45 +02:00
|
|
|
debug(that.name + ": Can't go to dock at the moment");
|
2017-05-06 23:51:58 +02:00
|
|
|
callback();
|
|
|
|
}
|
|
|
|
} else {
|
2017-05-07 16:31:41 +02:00
|
|
|
callback();
|
2017-05-06 23:51:58 +02:00
|
|
|
}
|
|
|
|
});
|
2017-04-17 16:07:21 +02:00
|
|
|
},
|
|
|
|
|
2017-05-06 23:51:58 +02:00
|
|
|
setEco: function (on, callback) {
|
2017-06-05 16:46:45 +02:00
|
|
|
debug(this.name + ": " + (on ? "Enable eco mode" : "Disable eco mode"));
|
2017-04-17 16:07:21 +02:00
|
|
|
this.robot.eco = on;
|
|
|
|
callback();
|
|
|
|
},
|
|
|
|
|
2017-05-06 23:51:58 +02:00
|
|
|
setSchedule: function (on, callback) {
|
2017-04-22 22:57:09 +02:00
|
|
|
let that = this;
|
2017-06-05 16:46:45 +02:00
|
|
|
this.updateRobot(function (error, result) {
|
2017-05-06 23:51:58 +02:00
|
|
|
if (on) {
|
2017-06-05 16:46:45 +02:00
|
|
|
debug(that.name + ": Enable schedule");
|
2017-05-06 23:51:58 +02:00
|
|
|
that.robot.enableSchedule(callback);
|
|
|
|
}
|
|
|
|
else {
|
2017-06-05 16:46:45 +02:00
|
|
|
debug(that.name + ": Disable schedule");
|
2017-05-06 23:51:58 +02:00
|
|
|
that.robot.disableSchedule(callback);
|
|
|
|
}
|
|
|
|
});
|
2017-04-17 16:07:21 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
getClean: function(callback) {
|
|
|
|
let that = this;
|
2017-06-05 16:46:45 +02:00
|
|
|
this.updateRobot(function (error, result) {
|
|
|
|
debug(that.name + ": Is cleaning: " + that.robot.canPause);
|
2017-04-17 16:07:21 +02:00
|
|
|
callback(false, that.robot.canPause);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2017-05-06 23:51:58 +02:00
|
|
|
getGoToDock: function(callback) {
|
2017-04-22 22:57:09 +02:00
|
|
|
let that = this;
|
2017-06-05 16:46:45 +02:00
|
|
|
this.updateRobot(function (error, result) {
|
|
|
|
debug(that.name + ": Can go to dock: " + that.robot.dockHasBeenSeen);
|
2017-05-04 19:24:33 +02:00
|
|
|
callback(false, !that.robot.dockHasBeenSeen);
|
2017-04-22 22:57:09 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2017-05-06 23:51:58 +02:00
|
|
|
getDock: function(callback) {
|
2017-04-17 16:07:21 +02:00
|
|
|
let that = this;
|
2017-06-05 16:46:45 +02:00
|
|
|
this.updateRobot(function (error, result) {
|
|
|
|
debug(that.name + ": Is docked: " + that.robot.isDocked);
|
2017-04-17 16:07:21 +02:00
|
|
|
callback(false, that.robot.isDocked);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
getEco: function(callback) {
|
2017-05-06 23:51:58 +02:00
|
|
|
// dont load eco here, because we cant save the eco state on the robot
|
|
|
|
callback(false, this.robot.eco);
|
2017-04-17 16:07:21 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
getSchedule: function(callback) {
|
|
|
|
let that = this;
|
2017-06-05 16:46:45 +02:00
|
|
|
this.updateRobot(function (error, result) {
|
|
|
|
debug(that.name + ": Schedule: " + that.robot.isScheduleEnabled);
|
2017-04-17 16:07:21 +02:00
|
|
|
callback(false, that.robot.isScheduleEnabled);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
getBatteryLevel: function(callback) {
|
|
|
|
let that = this;
|
2017-06-05 16:46:45 +02:00
|
|
|
this.updateRobot(function (error, result) {
|
|
|
|
debug(that.name + ": Battery: " + that.robot.charge);
|
2017-04-17 16:07:21 +02:00
|
|
|
callback(false, that.robot.charge);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
getBatteryChargingState: function(callback) {
|
|
|
|
let that = this;
|
2017-06-05 16:46:45 +02:00
|
|
|
this.updateRobot(function (error, result) {
|
|
|
|
debug(that.name + ": Is charging: " + that.robot.isCharging);
|
2017-04-17 16:07:21 +02:00
|
|
|
callback(false, that.robot.isCharging);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2017-06-05 16:46:45 +02:00
|
|
|
updateRobot: function(callback) {
|
2017-04-17 16:07:21 +02:00
|
|
|
let that = this;
|
|
|
|
if (this.lastUpdate !== null && new Date() - this.lastUpdate < 2000) {
|
2017-06-05 16:46:45 +02:00
|
|
|
debug(this.name + ": Update (cached)");
|
2017-04-17 16:07:21 +02:00
|
|
|
callback();
|
|
|
|
}
|
|
|
|
else {
|
2017-06-05 16:46:45 +02:00
|
|
|
debug(this.name + ": Update (online)");
|
2017-04-17 16:07:21 +02:00
|
|
|
this.robot.getState(function (error, result) {
|
|
|
|
that.lastUpdate = new Date();
|
|
|
|
callback();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-06-05 16:46:45 +02:00
|
|
|
updateRobotTimer: function() {
|
2017-05-06 23:51:58 +02:00
|
|
|
let that = this;
|
2017-06-05 16:46:45 +02:00
|
|
|
debug(this.name + ": Timer called");
|
|
|
|
this.updateRobot(function (error, result) {
|
2017-05-06 23:51:58 +02:00
|
|
|
|
|
|
|
// only update these values if the state is different from the current one, otherwise we might accidentally start an action
|
|
|
|
if (that.vacuumRobotCleanService.getCharacteristic(Characteristic.On).value !== that.robot.canPause) {
|
|
|
|
that.vacuumRobotCleanService.setCharacteristic(Characteristic.On, that.robot.canPause);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (that.vacuumRobotGoToDockService.getCharacteristic(Characteristic.On).value !== !that.robot.dockHasBeenSeen) {
|
|
|
|
that.vacuumRobotGoToDockService.setCharacteristic(Characteristic.On, !that.robot.dockHasBeenSeen);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (that.vacuumRobotScheduleService.getCharacteristic(Characteristic.On).value !== that.robot.isScheduleEnabled) {
|
|
|
|
that.vacuumRobotScheduleService.setCharacteristic(Characteristic.On, that.robot.isScheduleEnabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
// no commands here, values can be updated without problems
|
|
|
|
that.vacuumRobotDockStateService.setCharacteristic(Characteristic.OccupancyDetected, that.robot.isDocked);
|
|
|
|
that.vacuumRobotBatteryService.setCharacteristic(Characteristic.BatteryLevel, that.robot.charge);
|
|
|
|
that.vacuumRobotBatteryService.setCharacteristic(Characteristic.ChargingState, that.robot.isCharging);
|
|
|
|
|
|
|
|
// dont update eco, because we cant write that value onto the robot and dont want it to be overwritten in our plugin
|
|
|
|
|
|
|
|
if (that.robot.canPause) {
|
2017-06-05 16:46:45 +02:00
|
|
|
debug(that.name + ": Timer set (cleaning): 30s");
|
|
|
|
that.timer = setTimeout(that.updateRobotTimer.bind(that), 30 * 1000);
|
2017-05-06 23:51:58 +02:00
|
|
|
}
|
|
|
|
else if (that.refresh != 0) {
|
2017-06-05 16:46:45 +02:00
|
|
|
debug(that.name + ": Timer set (user): " + that.refresh + "s");
|
|
|
|
that.timer = setTimeout(that.updateRobotTimer.bind(that), that.refresh * 1000);
|
2017-05-06 23:51:58 +02:00
|
|
|
}
|
|
|
|
else {
|
2017-06-05 16:46:45 +02:00
|
|
|
debug(that.name + ": Timer stopped");
|
2017-05-06 23:51:58 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2017-04-17 16:07:21 +02:00
|
|
|
}
|