0.0.5 • Published 7 years ago
homebridge-boschindego v0.0.5
homebridge-boschindego
View and manage Bosch Indego Mower.
It's work :
- Auth
- Read state
- Add switch for mowing or dockingAnd don't work :
- Remake the code (https://github.com/nfarina/homebridge/blob/master/example-plugins/homebridge-samplePlatform/index.js)
- Add function with the Bosch API (https://github.com/zazaz-de/iot-device-bosch-indego-controller/blob/master/PROTOCOL.md)Installation
- Install homebridge using:
npm install -g homebridge - Install this plugin using:
npm install -g homebridge-boschindego - Update your configuration file. See sample-config.json in this repository for a sample.
Configuration
The available fields in the config.json file are:
accessoryAccessory value.nameAccessory name.modelAdditional information for the accessory.emailandpassfields used to authenticate the request into the device.update_intervalIf not zero, the field defines the polling period in miliseconds for the sensor state. When the value is zero, the state is only updated when homebridge requests the current value.view_logSet true for watch plugin log.
Example:
"accessories": [
{
"accessory": "BoschIndego",
"name": "Mower",
"model": 1000,
"email": "test@test.com",
"pass": "test",
"update_interval": "10000",
"view_log": false
}
]