-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzcl.colorcontrol_csc.info.json
More file actions
44 lines (44 loc) · 1.41 KB
/
zcl.colorcontrol_csc.info.json
File metadata and controls
44 lines (44 loc) · 1.41 KB
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
{
"id": "http://openinterconnect.org/zigbeemapping/schemas/zcl.colorcontrol_csc.info.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"description" : "Copyright (c) 2018 Open Connectivity Foundation, Inc. All rights reserved.",
"title": "Color Control Cluster - Color Space - Information",
"definitions": {
"zcl.colorcontrol_csc.info": {
"type": "object",
"properties": {
"currentX": {
"type": "integer",
"description": "current value of the normalized chromaticity value x, as defined in the CIE xy Color Space",
"x-ocf-conversion": {
"x-ocf-alias": "oic.r.colour.csc",
"x-to-ocf": [
"ocf.csc[0] = currentX/65536"
],
"x-from-ocf": [
"N/A"
]
}
},
"currentY": {
"type": "integer",
"description": "current value of the normalized chromaticity value y, as defined in the CIE xy Color Space",
"x-ocf-conversion": {
"x-ocf-alias": "oic.r.colour.csc",
"x-to-ocf": [
"ocf.csc[1] = currentY/65536"
],
"x-from-ocf": [
"N/A"
]
}
}
}
}
},
"type": "object",
"allOf": [
{"$ref": "#/definitions/zcl.colorcontrol_csc.info"}
],
"required": ["currentx","currenty"]
}