Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
2990bf2d75 | |||
|
5c52edeb3b | ||
|
56364f2ff3 | ||
|
76dad58bbe | ||
|
1e494ae683 | ||
|
f206d3ddaf | ||
|
70099e3c5a | ||
|
15f93ba1d7 |
@ -130,3 +130,6 @@
|
|||||||
|
|
||||||
## 0.8.3
|
## 0.8.3
|
||||||
* Add French plugin language (for example, this gives you a "Aspirer la cuisine" Siri command for a zone called "La cuisine")
|
* 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
|
@ -1,3 +1,7 @@
|
|||||||
|
[](https://www.npmjs.com/package/homebridge-kobold)
|
||||||
|
[](https://www.npmjs.com/package/homebridge-kobold?activeTab=versions)
|
||||||
|
|
||||||
|
|
||||||
# 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).
|
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
|
## 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
|
### 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
|
```bash
|
||||||
# This will trigger the email sending
|
# This will trigger the email sending
|
||||||
|
@ -136,6 +136,7 @@ function KoboldVacuumRobotAccessory(platform, robotObject)
|
|||||||
serviceName = this.dict["clean"] + " " + this.boundary.name;
|
serviceName = this.dict["clean"] + " " + this.boundary.name;
|
||||||
}
|
}
|
||||||
this.cleanService = new Service.Switch(serviceName, "cleanBoundary:" + this.boundary.id);
|
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);
|
this.log("Added cleaning device named: " + this.name);
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
"title": "token",
|
"title": "token",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"required": true,
|
"required": true,
|
||||||
"description": "Your Token"
|
"description": "Your Kobold Token (https://git.io/J3g1b)"
|
||||||
},
|
},
|
||||||
"language": {
|
"language": {
|
||||||
"title": "language",
|
"title": "language",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "homebridge-kobold",
|
"name": "homebridge-kobold",
|
||||||
"version": "0.8.3",
|
"version": "0.8.4",
|
||||||
"description": "A Vorwerk Kobold vacuum robot plugin for homebridge.",
|
"description": "A Vorwerk Kobold vacuum robot plugin for homebridge.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
@ -29,7 +29,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"colors": "^1.4.0",
|
"colors": "^1.4.0",
|
||||||
"debug": "^4.1.1",
|
"debug": "^4.1.1",
|
||||||
"node-kobold-control": ">=0.4.0",
|
"node-kobold-control": ">=0.4.2",
|
||||||
"uuid": "^3.3.2"
|
"uuid": "^3.3.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user