mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
* Support Philips Hue APIv2 and refactoring * Fix MDNSBrower - if timeout during host resolvment occurs * Hue API v2 - Migrate database * Fix macOS build * Handle network timeout before any other error * Address CodeQL findings * Clean-up and Fixes * Only getProperties, if username is available * Option to layout by entertainment area center * Fix Wizard * Fix Nanoleaf, add user auth token wizard * Nanoleaf fixes and enhancements * Consider rotated panel layouts * Corrections * Layout corrections and filter for non LED panels * Add LED test effect lightening up LEDs in sequence * Align rotation value to 15 degree steps * Align rotation value to 15 degree steps * Skip non LED panels * Fix Rotation and refactoring --------- Co-authored-by: Paulchen-Panther <16664240+Paulchen-Panther@users.noreply.github.com>
101 lines
2.6 KiB
JSON
101 lines
2.6 KiB
JSON
{
|
|
"type": "object",
|
|
"required": true,
|
|
"properties": {
|
|
"hostList": {
|
|
"type": "string",
|
|
"title": "edt_dev_spec_devices_discovered_title",
|
|
"enum": [ "NONE" ],
|
|
"options": {
|
|
"enum_titles": [ "edt_dev_spec_devices_discovery_inprogress" ],
|
|
"infoText": "edt_dev_spec_devices_discovered_title_info"
|
|
},
|
|
"required": true,
|
|
"propertyOrder": 1
|
|
},
|
|
"host": {
|
|
"type": "string",
|
|
"format": "hostname_or_ip",
|
|
"title": "edt_dev_spec_targetIpHost_title",
|
|
"options": {
|
|
"infoText": "edt_dev_spec_targetIpHost_title_info"
|
|
},
|
|
"required": true,
|
|
"propertyOrder": 2
|
|
},
|
|
"token": {
|
|
"type": "string",
|
|
"title": "edt_dev_auth_key_title",
|
|
"options": {
|
|
"infoText": "edt_dev_auth_key_title_info"
|
|
},
|
|
"propertyOrder": 3
|
|
},
|
|
"restoreOriginalState": {
|
|
"type": "boolean",
|
|
"format": "checkbox",
|
|
"title": "edt_dev_spec_restoreOriginalState_title",
|
|
"default": true,
|
|
"required": true,
|
|
"options": {
|
|
"infoText": "edt_dev_spec_restoreOriginalState_title_info"
|
|
},
|
|
"propertyOrder": 4
|
|
},
|
|
"overwriteBrightness": {
|
|
"type": "boolean",
|
|
"format": "checkbox",
|
|
"title": "edt_dev_spec_brightnessOverwrite_title",
|
|
"default": true,
|
|
"required": true,
|
|
"access": "advanced",
|
|
"propertyOrder": 5
|
|
},
|
|
"brightness": {
|
|
"type": "integer",
|
|
"title": "edt_dev_spec_brightness_title",
|
|
"default": 100,
|
|
"minimum": 1,
|
|
"maximum": 100,
|
|
"options": {
|
|
"dependencies": {
|
|
"overwriteBrightness": true
|
|
}
|
|
},
|
|
"access": "advanced",
|
|
"propertyOrder": 6
|
|
},
|
|
"title": {
|
|
"type": "object",
|
|
"title": "edt_dev_spec_panelorganisation_title",
|
|
"access": "advanced",
|
|
"propertyOrder": 7
|
|
},
|
|
"panelOrderTopDown": {
|
|
"type": "string",
|
|
"title": "edt_dev_spec_order_top_down_title",
|
|
"enum": [ "top2down", "bottom2up" ],
|
|
"default": "top2down",
|
|
"required": true,
|
|
"options": {
|
|
"enum_titles": [ "edt_conf_enum_top_down", "edt_conf_enum_bottom_up" ]
|
|
},
|
|
"access": "advanced",
|
|
"propertyOrder": 8
|
|
},
|
|
"panelOrderLeftRight": {
|
|
"type": "string",
|
|
"title": "edt_dev_spec_order_left_right_title",
|
|
"enum": [ "left2right", "right2left" ],
|
|
"default": "left2right",
|
|
"required": true,
|
|
"options": {
|
|
"enum_titles": [ "edt_conf_enum_left_right", "edt_conf_enum_right_left" ]
|
|
},
|
|
"access": "advanced",
|
|
"propertyOrder": 9
|
|
}
|
|
},
|
|
"additionalProperties": true
|
|
}
|