mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
c124e2136a
* Add CEC functionality * Initial commit * removed libCEC from the system skip list Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
29 lines
470 B
JSON
29 lines
470 B
JSON
{
|
|
"type":"object",
|
|
"required":true,
|
|
"properties":{
|
|
"command": {
|
|
"type" : "string",
|
|
"required" : true,
|
|
"enum" : ["leddevice"]
|
|
},
|
|
"tan" : {
|
|
"type" : "integer"
|
|
},
|
|
"subcommand": {
|
|
"type" : "string",
|
|
"required" : true,
|
|
"enum" : ["discover","getProperties","identify"]
|
|
},
|
|
"ledDeviceType": {
|
|
"type" : "string",
|
|
"required" : true
|
|
},
|
|
"params": {
|
|
"type" : "object",
|
|
"required" : false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|