mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
7389068a66
* Refactor LedDevices - Initial version * Small renamings * Add WLED as own device * Lpd8806 Remove open() method * remove dependency on Qt 5.10 * Lpd8806 Remove open() method * Update WS281x * Update WS2812SPI * Add writeBlack for WLED powerOff * WLED remove extra bracket * Allow different Nanoleaf panel numbering sequence (Feature req.#827) * build(deps): bump websocket-extensions from 0.1.3 to 0.1.4 in /docs (#826) * Bumps [websocket-extensions](https://github.com/faye/websocket-extensions-node) from 0.1.3 to 0.1.4. - [Release notes](https://github.com/faye/websocket-extensions-node/releases) - [Changelog](https://github.com/faye/websocket-extensions-node/blob/master/CHANGELOG.md) - [Commits](https://github.com/faye/websocket-extensions-node/compare/0.1.3...0.1.4) * Fix typos * Nanoleaf clean-up * Yeelight support, generalize wizard elements * Update Yeelight to handle quota in music mode * Yeelight extend rage for extraTimeDarkness for testing * Clean-up - Add commentary, Remove development debug statements * Fix brightnessSwitchOffOnMinimum typo and default value * Yeelight support restoreOriginalState, additional Fixes * WLED - Remove UDP-Port, as it is not configurable * Fix merging issue * Remove QHostAddress::operator=(const QString&)' is deprecated * Windows compile errors and (Qt 5.15 deprecation) warnings * Fix order includes * LedDeviceFile Support Qt5.7 and greater * Windows compatibility and other Fixes * Fix Qt Version compatability * Rs232 - Resolve portname from unix /dev/ style, fix DMX sub-type support * Disable WLED Wizard Button (until Wizard is available) * Yeelight updates * Add wrong log-type as per #505 * Fixes and Clean-up after clang-tidy report * Fix udpe131 not enabled for generated CID * Change timer into dynamic for Qt Thread-Affinity * Hue clean-up and diyHue workaround * Updates after review feedback by m-seker * Add "chrono" includes
181 lines
3.9 KiB
JSON
181 lines
3.9 KiB
JSON
{
|
|
"type":"object",
|
|
"required":true,
|
|
"properties":{
|
|
"colorModel": {
|
|
"type": "integer",
|
|
"title":"Output Type",
|
|
"enum" : [0, 1],
|
|
"default" : 1,
|
|
"options" : {
|
|
"enum_titles" : ["edt_conf_enum_hsv", "edt_conf_enum_rgb"]
|
|
},
|
|
"minimum" : 0,
|
|
"maximum" : 1,
|
|
"access" : "advanced",
|
|
"propertyOrder" : 1
|
|
},
|
|
"transEffect": {
|
|
"type": "integer",
|
|
"title":"edt_dev_spec_transeffect_title",
|
|
"enum" : [0, 1],
|
|
"default" : 0,
|
|
"options" : {
|
|
"enum_titles" : ["edt_conf_enum_transeffect_smooth", "edt_conf_enum_transeffect_sudden" ]
|
|
},
|
|
"minimum" : 0,
|
|
"maximum" : 1,
|
|
"access" : "advanced",
|
|
"propertyOrder" : 2
|
|
},
|
|
"transTime": {
|
|
"type": "integer",
|
|
"title":"edt_dev_spec_transistionTime_title",
|
|
"default": 40,
|
|
"append" : "ms",
|
|
"minimum": 30,
|
|
"maximum": 5000,
|
|
"access" : "advanced",
|
|
"options": {
|
|
"dependencies": {
|
|
"transEffect": 0
|
|
}
|
|
},
|
|
"propertyOrder" : 3
|
|
},
|
|
"extraTimeDarkness": {
|
|
"type": "integer",
|
|
"title":"edt_dev_spec_transistionTimeExtra_title",
|
|
"default" : 0,
|
|
"step": 10,
|
|
"minimum" : 0,
|
|
"maximum" : 3000,
|
|
"append" : "ms",
|
|
"access" : "advanced",
|
|
"propertyOrder" : 4
|
|
},
|
|
"brightnessMin": {
|
|
"type": "integer",
|
|
"title":"edt_dev_spec_brightnessMin_title",
|
|
"default" : 1,
|
|
"step": 1,
|
|
"minimum" : 1,
|
|
"maximum" : 99,
|
|
"append" : "%",
|
|
"access" : "advanced",
|
|
"propertyOrder" : 5
|
|
},
|
|
"brightnessSwitchOffOnMinimum": {
|
|
"type": "boolean",
|
|
"title":"edt_dev_spec_switchOffOnbelowMinBrightness_title",
|
|
"default" : true,
|
|
"access" : "advanced",
|
|
"propertyOrder" : 6
|
|
},
|
|
"brightnessMax": {
|
|
"type": "integer",
|
|
"title":"edt_dev_spec_brightnessMax_title",
|
|
"default" : 100,
|
|
"step": 1,
|
|
"minimum" : 0,
|
|
"maximum" : 100,
|
|
"append" : "%",
|
|
"access" : "advanced",
|
|
"propertyOrder" : 7
|
|
},
|
|
"brightnessFactor": {
|
|
"type": "number",
|
|
"title":"edt_dev_spec_brightnessFactor_title",
|
|
"default" : 1.0,
|
|
"step": 0.25,
|
|
"minimum" : 0.5,
|
|
"maximum" : 10.0,
|
|
"access" : "expert",
|
|
"propertyOrder" : 8
|
|
},
|
|
"restoreOriginalState": {
|
|
"type": "boolean",
|
|
"title":"edt_dev_spec_restoreOriginalState_title",
|
|
"default" : false,
|
|
"propertyOrder" : 9
|
|
},
|
|
"lights": {
|
|
"type": "array",
|
|
"title":"edt_dev_spec_lights_title",
|
|
"propertyOrder" : 9,
|
|
"minimum" : 1,
|
|
"uniqueItems" : true,
|
|
"items" : {
|
|
"type" : "object",
|
|
"title" : "edt_dev_spec_lights_itemtitle",
|
|
"required" : true,
|
|
"properties" :
|
|
{
|
|
"host" :
|
|
{
|
|
"type" : "string",
|
|
"minimum" : 7,
|
|
"title" : "edt_dev_spec_networkDeviceName_title",
|
|
"required" : true,
|
|
"propertyOrder" : 1
|
|
},
|
|
"port" :
|
|
{
|
|
"type" : "integer",
|
|
"minimum" : 0,
|
|
"maximum" : 65535,
|
|
"default":55443,
|
|
"title" : "edt_dev_spec_networkDevicePort_title",
|
|
"required" : false,
|
|
"access" : "expert",
|
|
"propertyOrder" : 2
|
|
},
|
|
"name" :
|
|
{
|
|
"type" : "string",
|
|
"title" : "edt_dev_spec_lights_name",
|
|
"minimum" : 0,
|
|
"propertyOrder" : 3
|
|
}
|
|
}
|
|
},
|
|
"propertyOrder" : 10
|
|
},
|
|
"quotaWait": {
|
|
"type": "integer",
|
|
"title":"Wait time (quota)",
|
|
"default": 1000,
|
|
"append" : "edt_append_ms",
|
|
"minimum": 0,
|
|
"maximum": 10000,
|
|
"step": 100,
|
|
"access" : "expert",
|
|
"propertyOrder" : 11
|
|
},
|
|
"latchTime": {
|
|
"type": "integer",
|
|
"title":"edt_dev_spec_latchtime_title",
|
|
"default": 40,
|
|
"append" : "edt_append_ms",
|
|
"minimum": 0,
|
|
"maximum": 1000,
|
|
"access" : "expert",
|
|
"propertyOrder" : 12
|
|
},
|
|
"debugLevel": {
|
|
"type": "integer",
|
|
"title":"edt_dev_spec_debugLevel_title",
|
|
"enum" : [0, 1, 2, 3],
|
|
"default" : 0,
|
|
"options" : {
|
|
"enum_titles" : ["edt_conf_enum_dl_nodebug", "edt_conf_enum_dl_verbose1", "edt_conf_enum_dl_verbose2", "edt_conf_enum_dl_verbose3"]
|
|
},
|
|
"minimum" : 0,
|
|
"maximum" : 3,
|
|
"access" : "expert",
|
|
"propertyOrder" : 13
|
|
}
|
|
},
|
|
"additionalProperties": true
|
|
}
|