mirror of https://github.com/nymea/nymea.git
Fix some interface definitions (minimum/maximum vs min/max)
parent
28d2f53261
commit
ecac5d9dc9
|
|
@ -4,8 +4,8 @@
|
|||
{
|
||||
"name": "colorTemperature",
|
||||
"type": "int",
|
||||
"minimumValue": "any",
|
||||
"maximumValue": "any",
|
||||
"minValue": "any",
|
||||
"maxValue": "any",
|
||||
"writable": true
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@
|
|||
{
|
||||
"name": "brightness",
|
||||
"type": "int",
|
||||
"minimumValue": 0,
|
||||
"maximumValue": 100,
|
||||
"minValue": 0,
|
||||
"maxValue": 100,
|
||||
"writable": true
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -6,7 +6,9 @@
|
|||
"name": "maxChargingCurrent",
|
||||
"type": "uint",
|
||||
"writable": true,
|
||||
"unit": "Ampere"
|
||||
"unit": "Ampere",
|
||||
"minValue": "any",
|
||||
"maxValue": "any"
|
||||
},
|
||||
{
|
||||
"name": "pluggedIn",
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@
|
|||
{
|
||||
"name": "percentage",
|
||||
"type": "int",
|
||||
"minimumValue": 0,
|
||||
"maximumValue": 100,
|
||||
"minValue": 0,
|
||||
"maxValue": 100,
|
||||
"writable": true
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -5,8 +5,8 @@
|
|||
{
|
||||
"name": "flowRate",
|
||||
"type": "int",
|
||||
"minimumValue": "any",
|
||||
"maximumValue": "any",
|
||||
"minValue": "any",
|
||||
"maxValue": "any",
|
||||
"writable": true,
|
||||
"optional": true
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue