This repository has been archived by the owner on Jan 7, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.schema.json
76 lines (76 loc) · 2.86 KB
/
config.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"pluginAlias": "HeaterCoolerMicronovaAguaIOTStove",
"pluginType": "accessory",
"singular": true,
"headerDisplay": "Homebridge plugin to manage stoves/heaters with Micronova's Agua IOT module and HTTP API",
"footerDisplay": null,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"description": "Stove Name - MUST be the same than one you configured in official stove mobile app, and you now want to control from HomeBridge",
"type": "string",
"required": true
},
"brand": {
"title": "Stove Brand or Stove official App Name",
"description": "Your stove brand, or official stove app name - any other is not supported",
"type": "string",
"default": "piazzetta",
"oneOf": [
{ "title": "Piazzetta - MyPiazzetta", "enum": ["piazzetta"] },
{ "title": "EvaCalòr - PuntoFuoco", "enum": ["evastampaggi"] },
{ "title": "Nordic Fire", "enum": ["nordicfire"] },
{ "title": "Elfire", "enum": ["elfire"] },
{ "title": "Karmek", "enum": ["karmekone"] },
{ "title": "MCZ - Easy Connect", "enum": ["mcz1"] },
{ "title": "MCZ - Easy Connect Plus", "enum": ["mcz2"] },
{ "title": "MCZ - Easy Connect Poêle", "enum": ["mcz3"] },
{ "title": "Lorflam", "enum": ["lorflam"] },
{ "title": "Laminox - LMX Remote Control / LAMINOXREM", "enum": ["laminox"] },
{ "title": "Boreal", "enum": ["boreal"] },
{ "title": "Bronpi", "enum": ["bronpi"] },
{ "title": "Solartecnik - EOSS WIFI", "enum": ["solartecnik"] },
{ "title": "Jolly Mec", "enum": ["jollymec"] },
{ "title": "Globe-Fire", "enum": ["globefire"] },
{ "title": "Timsistem - TS Smart", "enum": ["timsistem"] },
{ "title": "Stufe a pellet Italia", "enum": ["stufepelletitalia"] },
{ "title": "My Corisit", "enum": ["mycorisit"] },
{ "title": "Fonte Flamme contrôle 1", "enum": ["fonteflame"] },
{ "title": "Klover", "enum": ["klover"] },
{ "title": "AMG - GO HEAT", "enum": ["amg"] },
{ "title": "Linea VZ - Wi-Phire", "enum": ["lineavz"] },
{ "title": "Thermoflux", "enum": ["thermoflux"] },
{ "title": "Darwin Evolution", "enum": ["cola"] },
{ "title": "Moretti Design", "enum": ["moretti"] },
{ "title": "Fontana Forni", "enum": ["fontanaforni"] },
{ "title": "Nina", "enum": ["micronova"] }
],
"required": true
},
"login": {
"title": "Login",
"description": "Stove official App Login",
"type": "string",
"format": "email",
"required": true
},
"password": {
"title": "Password",
"description": "Stove official App Password",
"type": "string",
"required": true
},
"debug": {
"title": "Debug",
"description": "Enable debug output messages in HomeBridge (regardless of HomeBridge debug settings)",
"type": "boolean",
"default": false,
"required": true
}
}
},
"form": null,
"display": null
}