Compare commits

...

8 Commits

Author SHA1 Message Date
2990bf2d75 just drying someting 2022-05-02 14:20:05 +00:00
Luis R
5c52edeb3b
Update README.md 2021-05-12 12:58:49 +02:00
Luis Riegger
56364f2ff3 Update Changelog 2021-05-04 08:04:20 +02:00
Luis Riegger
76dad58bbe 0.8.4 2021-05-04 08:03:07 +02:00
Luis Riegger
1e494ae683 Link to token getter in UI 2021-05-04 08:02:18 +02:00
Luis R
f206d3ddaf
Update README.md 2021-05-03 13:16:30 +02:00
Luis Riegger
70099e3c5a Bump node-kobold-control version 2021-05-02 10:06:32 +02:00
Luis R
15f93ba1d7
Update README.md
Add npm shield tag
2021-04-30 15:18:10 +02:00
5 changed files with 13 additions and 5 deletions

View File

@ -130,3 +130,6 @@
## 0.8.3
* Add French plugin language (for example, this gives you a "Aspirer la cuisine" Siri command for a zone called "La cuisine")
## 0.8.4
* Link to token getter tool in homebridge UI

View File

@ -1,3 +1,7 @@
[![Latest NPM release](https://img.shields.io/npm/v/homebridge-kobold.svg)](https://www.npmjs.com/package/homebridge-kobold)
[![NPM Downloads](https://img.shields.io/npm/dt/homebridge-kobold.svg)](https://www.npmjs.com/package/homebridge-kobold?activeTab=versions)
# homebridge-kobold
This is a plugin for [homebridge](https://github.com/nfarina/homebridge) to control your [Vorwerk Kobold](https://kobold.vorwerk.de/saugroboter/) VR300 vacuum robot. You can download it via [npm](https://www.npmjs.com/package/homebridge-kobold).
@ -43,7 +47,7 @@ The interaction with the Server is handled by the underlying [node-kobold-contro
## Configuration
Add the following information to your config file. Change the values for email and password.
Add the following information to your config file. Adapt the value for `token`.
### Simple
@ -57,7 +61,7 @@ Add the following information to your config file. Change the values for email a
]
```
You can get a token using the following two curl commands:
You can get a token using the GUI tool [Kobold Token Getter](https://github.com/himbeles/kobold-token-get) or using the following two curl commands:
```bash
# This will trigger the email sending

View File

@ -136,6 +136,7 @@ function KoboldVacuumRobotAccessory(platform, robotObject)
serviceName = this.dict["clean"] + " " + this.boundary.name;
}
this.cleanService = new Service.Switch(serviceName, "cleanBoundary:" + this.boundary.id);
this.cleanService = new Service.Switch(serviceName + "1", "cleanBoundary:" + this.boundary.id)
}
this.log("Added cleaning device named: " + this.name);

View File

@ -9,7 +9,7 @@
"title": "token",
"type": "string",
"required": true,
"description": "Your Token"
"description": "Your Kobold Token (https://git.io/J3g1b)"
},
"language": {
"title": "language",

View File

@ -1,6 +1,6 @@
{
"name": "homebridge-kobold",
"version": "0.8.3",
"version": "0.8.4",
"description": "A Vorwerk Kobold vacuum robot plugin for homebridge.",
"license": "MIT",
"keywords": [
@ -29,7 +29,7 @@
"dependencies": {
"colors": "^1.4.0",
"debug": "^4.1.1",
"node-kobold-control": ">=0.4.0",
"node-kobold-control": ">=0.4.2",
"uuid": "^3.3.2"
}
}