homebridge-s0meter
Version:
S0 power meter accessory homebridge: https://github.com/ma-ku/homebridge-s0meter
31 lines • 708 B
JSON
{
"pluginAlias": "S0Meter",
"pluginType": "accessory",
"schema": {
"type": "object",
"properties": {
"name": {
"title": "name",
"type": "string",
"required": true,
"default": "Meter"
},
"type": {
"title": "Meter Type",
"type": "string",
"required": true,
"default": "E350",
"description": "Type of meter to select correct polling method. Supported types are: Landis Gyr E350"
},
"refreshRate": {
"title": "Refresh Rate",
"type": "integer",
"default": 600000,
"maximum": 3600000,
"minimum": 50000,
"required": false,
"description": "Time in milliseconds between to readings (default is 10 Minutes = 600000ms)"
}
}
}
}