mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
Added latchtime web configuration for ws2801 device. (#302)
* Added latchtime web configuration for ws2801 device. Fixed default to be 500000ns * cleaner code using defaults and added "ns" to web schema * oops... "ns" not "ms"
This commit is contained in:
parent
3e5ca4601d
commit
080059cbf5
@ -3,6 +3,7 @@
|
||||
LedDeviceWs2801::LedDeviceWs2801(const QJsonObject &deviceConfig)
|
||||
: ProviderSpi()
|
||||
{
|
||||
_latchTime_ns = 500000;
|
||||
_deviceReady = ProviderSpi::init(deviceConfig);
|
||||
}
|
||||
|
||||
|
@ -14,12 +14,19 @@
|
||||
"default": 1000000,
|
||||
"propertyOrder" : 2
|
||||
},
|
||||
"latchtime": {
|
||||
"type": "integer",
|
||||
"title":"Latchtime",
|
||||
"default": 500000,
|
||||
"append" : "ns",
|
||||
"propertyOrder" : 3
|
||||
},
|
||||
"invert": {
|
||||
"type": "boolean",
|
||||
"format": "checkbox",
|
||||
"title":"Invert signal",
|
||||
"default": false,
|
||||
"propertyOrder" : 3
|
||||
"propertyOrder" : 4
|
||||
}
|
||||
},
|
||||
"additionalProperties": true
|
||||
|
Loading…
Reference in New Issue
Block a user