6 Commits

Author SHA1 Message Date
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
4 changed files with 10 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,5 @@
[![Latest NPM release](https://img.shields.io/npm/v/homebridge-kobold.svg)](https://www.npmjs.com/package/homebridge-kobold)
# 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 +45,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 +59,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

@@ -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"
}
}