mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
1670ec58a7
* sk6812SPI was buggy cleaned up code - make sk6812spi and ws2812spi more consistent * led device schema updates
27 lines
470 B
JSON
27 lines
470 B
JSON
{
|
|
"type":"object",
|
|
"required":true,
|
|
"properties":{
|
|
"output": {
|
|
"type": "string",
|
|
"title":"SPI path",
|
|
"enum" : ["/dev/spidev0.0","/dev/spidev0.1"],
|
|
"propertyOrder" : 1
|
|
},
|
|
"rate": {
|
|
"type": "integer",
|
|
"title":"Baudrate",
|
|
"default": 3000000,
|
|
"propertyOrder" : 2
|
|
},
|
|
"invert": {
|
|
"type": "boolean",
|
|
"format": "checkbox",
|
|
"title":"Invert signal",
|
|
"default": false,
|
|
"propertyOrder" : 3
|
|
}
|
|
},
|
|
"additionalProperties": true
|
|
}
|