UNPKG

homebridge-soil-temp-sensor

Version:

Homebridge plugin to listen to moisture sensor http push messages and publish them towards HomeKit

50 lines 1.2 kB
{ "pluginAlias": "SoilMoistureTempSensor", "pluginType": "accessory", "singular": false, "customUi": false, "schema": { "type": "object", "properties": { "name": { "title": "Name", "type": "string", "required": true, "default": "My Soil sensor", "description": "Plugin name as displayed in the Homebridge log." }, "maxCacheAgeMin": { "title": "Maximum cache age [min]", "type": "number", "required": false, "default": 60, "description": "When no update received within this time, the device's battery status is emulated as low." }, "notificationID": { "title": "Notification ID", "type": "string", "required": true, "default": "" }, "notificationPassword": { "title": "Notification password", "type": "string", "required": false, "default": "" } } }, "form": [ "name", "maxCacheAgeMin", { "type": "fieldset", "expandable": true, "title": "Notification server", "items": [ "notificationID", "notificationPassword" ] } ] }