Merge PR #493: Fix some interface definitions (minimum/maximum vs min/max)
This commit is contained in:
commit
86c6026690
@ -4,8 +4,8 @@
|
|||||||
{
|
{
|
||||||
"name": "colorTemperature",
|
"name": "colorTemperature",
|
||||||
"type": "int",
|
"type": "int",
|
||||||
"minimumValue": "any",
|
"minValue": "any",
|
||||||
"maximumValue": "any",
|
"maxValue": "any",
|
||||||
"writable": true
|
"writable": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@ -4,8 +4,8 @@
|
|||||||
{
|
{
|
||||||
"name": "brightness",
|
"name": "brightness",
|
||||||
"type": "int",
|
"type": "int",
|
||||||
"minimumValue": 0,
|
"minValue": 0,
|
||||||
"maximumValue": 100,
|
"maxValue": 100,
|
||||||
"writable": true
|
"writable": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@ -6,7 +6,9 @@
|
|||||||
"name": "maxChargingCurrent",
|
"name": "maxChargingCurrent",
|
||||||
"type": "uint",
|
"type": "uint",
|
||||||
"writable": true,
|
"writable": true,
|
||||||
"unit": "Ampere"
|
"unit": "Ampere",
|
||||||
|
"minValue": "any",
|
||||||
|
"maxValue": "any"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "pluggedIn",
|
"name": "pluggedIn",
|
||||||
|
|||||||
@ -10,8 +10,8 @@
|
|||||||
{
|
{
|
||||||
"name": "percentage",
|
"name": "percentage",
|
||||||
"type": "int",
|
"type": "int",
|
||||||
"minimumValue": 0,
|
"minValue": 0,
|
||||||
"maximumValue": 100,
|
"maxValue": 100,
|
||||||
"writable": true
|
"writable": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@ -5,8 +5,8 @@
|
|||||||
{
|
{
|
||||||
"name": "flowRate",
|
"name": "flowRate",
|
||||||
"type": "int",
|
"type": "int",
|
||||||
"minimumValue": "any",
|
"minValue": "any",
|
||||||
"maximumValue": "any",
|
"maxValue": "any",
|
||||||
"writable": true,
|
"writable": true,
|
||||||
"optional": true
|
"optional": true
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user