
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
node-kobold
Advanced tools
A node module for Vorwerk Kobold VR200 and VR300.
Based on Pmant's node-botvac, thanks to tomrosenback's PHP Port, kangguru's and naofireblade's work on the undocumented Neato / Vorwerk API.
npm install node-kobold
var kobold = require('node-kobold');
var client = new kobold.Client();
//authorize
client.authorize('email', 'password', false, function (error) {
if (error) {
console.log(error);
return;
}
//get your robots
client.getRobots(function (error, robots) {
if (error) {
console.log(error);
return;
}
if (robots.length) {
//do something
robots[0].getState(function (error, result) {
console.log(result);
});
}
});
});
var kobold = require('node-kobold');
var client = new kobold.Client();
//authorize
client.setToken(token);
//get your robots
client.getRobots(function (error, robots) {
if (error) {
console.log(error);
return;
}
if (robots.length) {
//do something
robots[0].getState(function (error, result) {
console.log(result);
});
}
});
You can get a token using the following two curl commands:
# This will trigger the email sending
curl -X "POST" "https://mykobold.eu.auth0.com/passwordless/start" \
-H 'Content-Type: application/json' \
-d $'{
"send": "code",
"email": "ENTER_YOUR_EMAIL_HERE",
"client_id": "KY4YbVAvtgB7lp8vIbWQ7zLk3hssZlhR",
"connection": "email"
}'
==== wait for the email to be received ====
# this will generate a token using the numbers you received via email
# replace the value of otp 123456 with the value you received from the email
curl -X "POST" "https://mykobold.eu.auth0.com/oauth/token" \
-H 'Content-Type: application/json' \
-d $'{
"prompt": "login",
"grant_type": "http://auth0.com/oauth/grant-type/passwordless/otp",
"scope": "openid email profile read:current_user",
"locale": "en",
"otp": "123456",
"source": "vorwerk_auth0",
"platform": "ios",
"audience": "https://mykobold.eu.auth0.com/userinfo",
"username": "ENTER_YOUR_EMAIL_HERE",
"client_id": "KY4YbVAvtgB7lp8vIbWQ7zLk3hssZlhR",
"realm": "email",
"country_code": "DE"
}'
From the output, you want to copy the id_token
value.
Login at the Vorwerk api.
email
- your Vorwerk emailpassword
- your Vorwerk passwortforce
- force login if already authorizedcallback
- function(error)
error
null if no error occurredSet a token that you already gathered via the oauth workflow
token
- the OAuth token you acquiredReturns an array containing your registered robots.
callback
- function(error, robots)
error
null if no error occurredrobots
array - your robotsrobot.name
- nickname of this robot (cannot be changed)These properties will be updated every time robot.getState()
is called:
robot.isCharging
booleanrobot.isDocked
booleanrobot.isScheduleEnabled
booleanrobot.dockHasBeenSeen
booleanrobot.charge
number - charge in percentrobot.canStart
boolean - robot is ready to start cleaningrobot.canStop
boolean - cleaning can be stoppedrobot.canPause
boolean - cleaning can be pausedrobot.canResume
boolean - cleaning can be resumedrobot.canGoToBase
boolean - robot can be sent to baserobot.eco
boolean - set to true to clean in eco moderobot.noGoLines
boolean - set to true to enable noGoLinesrobot.navigationMode
number - 1: normal, 2: extra care (new models only)robot.spotWidth
number - width for spot cleaning in cmrobot.spotHeight
number - height for spot cleaning in cmrobot.spotRepeat
boolean - set to true to clean spot two timesrobot.getState()
robot.getSchedule()
robot.enableSchedule()
robot.disableSchedule()
robot.startCleaning()
robot.startSpotCleaning()
robot.stopCleaning()
robot.pauseCleaning()
robot.resumeCleaning()
robot.sendToBase()
Returns the state object of the robot. Also updates all robot properties.
callback
- function(error, state)
error
null
if no error occurredstate
object
var state = {
version: 1,
reqId: '1',
result: 'ok',
error: 'ui_alert_invalid',
data: {},
state: 1,
action: 0,
cleaning: {
category: 2,
mode: 1,
modifier: 1,
spotWidth: 0,
spotHeight: 0
},
details: {
isCharging: false,
isDocked: true,
isScheduleEnabled: false,
dockHasBeenSeen: false,
charge: 98
},
availableCommands: {
start: true,
stop: false,
pause: false,
resume: false,
goToBase: false
},
availableServices: {
houseCleaning: 'basic-1',
spotCleaning: 'basic-1',
manualCleaning: 'basic-1',
easyConnect: 'basic-1',
schedule: 'basic-1'
},
meta: {
modelName: 'VR200',
firmware: '2.1.3'
}
};
var state = {
version: 1,
reqId: '1',
result: 'ok',
data: {},
error: null,
alert: null,
state: 1,
action: 0,
cleaning: {
category: 4,
mode: 1,
modifier: 1,
navigationMode: 1,
mapId: '',
spotWidth: 0,
spotHeight: 0
},
details: {
isCharging: false,
isDocked: true,
isScheduleEnabled: false,
dockHasBeenSeen: false,
charge: 99
},
availableCommands: {
start: true,
stop: false,
pause: false,
resume: false,
goToBase: false
},
availableServices: {
findMe: 'basic-1',
generalInfo: 'basic-1',
houseCleaning: 'basic-3',
IECTest: 'advanced-1',
logCopy: 'basic-1',
manualCleaning: 'basic-1',
maps: 'advanced-1',
preferences: 'basic-1',
schedule: 'basic-1',
softwareUpdate: 'basic-1',
spotCleaning: 'basic-1',
wifi: 'basic-1'
},
meta: {
modelName: 'VR220',
firmware: '4.2.4-162'
}
};
Returns the scheduling state of the robot.
callback
- function(error, schedule)
error
null if no error occurredschedule
boolean - true if scheduling is enabledEnables scheduling.
callback
- function(error, result)
error
null if no error occurredresult
string - 'ok' if scheduling got enabledDisables scheduling.
callback
- function(error, result)
error
null if no error occurredresult
string - 'ok' if scheduling got disabledStart cleaning.
eco
boolean - clean in eco modenavigationMode
number - 1: normal, 2: extra care (new neato models only)noGoLines
boolean - clean with enabled nogo linescallback
- function(error, result)
error
null if no error occurredresult
string - 'ok' if cleaning could be startedStart spot cleaning.
eco
boolean - clean in eco modewidth
number - spot width in cm (min 100cm)height
number - spot height in cm (min 100cm)repeat
boolean - clean spot two timesnavigationMode
number - 1: normal, 2: extra care (new neato models only)callback
- function(error, result)
error
null if no error occurredresult
string - 'ok' if spot cleaning could be startedStop cleaning.
callback
- function(error, result)
error
null if no error occurredresult
string - 'ok' if cleaning could be stoppedPause cleaning.
callback
- function(error, result)
error
null if no error occurredresult
string - 'ok' if cleaning could be pausedResume cleaning.
callback
- function(error, result)
error
null if no error occurredresult
string - 'ok' if cleaning could be resumedSend robot to base.
callback
- function(error, result)
error
null if no error occurredresult
string - 'ok' if robot could be sent to baseFAQs
Vorwerk Kobold API for VR200 and VR300
We found that node-kobold demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.