homebridge-foobot-multi
Version:
Homebridge plugin for Foobot air quality monitor
44 lines (43 loc) • 1.15 kB
JSON
{
"pluginAlias": "FoobotMultiHomebridgePlugin",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "Foobot Dynamic Platform"
},
"apiKey": {
"title": "API Key",
"type": "string",
"required": true,
"description": "Your API key form api.foobot.io",
"placeholder": "eg. : eyJhbGciOiJIUzI1NiJ9.eyJncm.abcdffhOU"
},
"userName": {
"title": "Username",
"type": "string",
"required": true,
"placeholder": "jsmith@company.com"
},
"co2limit": {
"title": "CO2 Detection Level",
"description": "CO2 level in parts per million to trigger detection.",
"type": "number",
"required": true,
"default": 1925
},
"co2off": {
"title": "Disable CO2",
"description": "Foobot infers CO2 levels from VOCs and is known to be inaccurate.",
"type": "bool",
"required": true,
"default": false
}
}
}
}