Make color and colorTemperature in lights interfaces writable

This commit is contained in:
Michael Zanetti 2019-01-18 12:15:58 +01:00
parent 948eff8319
commit 60d60ed0cd
2 changed files with 4 additions and 2 deletions

View File

@ -3,7 +3,8 @@
"states": [ "states": [
{ {
"name": "color", "name": "color",
"type": "QColor" "type": "QColor",
"writable": true
} }
] ]
} }

View File

@ -5,7 +5,8 @@
"name": "colorTemperature", "name": "colorTemperature",
"type": "int", "type": "int",
"minimumValue": "any", "minimumValue": "any",
"maximumValue": "any" "maximumValue": "any",
"writable": true
} }
] ]
} }