mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
.ci
.github
.vscode
assets
bin
cmake
config
dependencies
doc
effects
schema
candle.schema.json
collision.schema.json
fade.schema.json
flag.schema.json
gif.schema.json
knight-rider.schema.json
ledtest.schema.json
light-clock.schema.json
mood-blobs.schema.json
pacman.schema.json
police.schema.json
rainbow-mood.schema.json
random.schema.json
shutdown.schema.json
snake.schema.json
sparks.schema.json
swirl.schema.json
traces.schema.json
trails.schema.json
waves.schema.json
x-mas.schema.json
Seawaves.json
Waves.json
atomic.json
breath.json
candle.json
candle.py
cinema-fade-in.json
cinema-fade-off.json
collision.json
collision.py
double-swirl.json
fade.py
fire.gif
fire.json
flag.json
flag.py
gif.py
knight-rider.json
knight-rider.py
ledtest.json
ledtest.py
light-clock.json
light-clock.py
lights.gif
lights.json
mood-blobs-blue.json
mood-blobs-cold.json
mood-blobs-full.json
mood-blobs-green.json
mood-blobs-red.json
mood-blobs-warm.json
mood-blobs.py
notify-blue.json
pacman.json
pacman.py
police-lights-single.json
police-lights-solid.json
police.py
rainbow-mood.json
rainbow-mood.py
rainbow-swirl-fast.json
rainbow-swirl.json
random.json
random.py
readme.txt
running_dots.py
shutdown.json
shutdown.py
snake.json
snake.py
sparks.json
sparks.py
strobe-red.json
strobe-white.json
swirl.py
traces.json
traces.py
trails.json
trails.py
trails_color.json
waves.py
x-mas.json
x-mas.py
include
libsrc
resources
src
test
.azure.yml
.codedocs
.gitignore
.gitmodules
3RD_PARTY_LICENSES
CMakeLists.txt
CONTRIBUTING.md
CompileHowto.md
CrossCompileHowto.md
HyperionConfig.h.in
LICENSE
README.md
version
* add dynamic smoothing first step * extend prio muxer to hold smoothing preset id * add icons for systray * fix missing changes in prio muxer * implement specific smoothing params for effects * refactoring: std::min/max to qMin/Max * some code optimization * fix schema and translation * revoke change of python include order * fix eol in effect shemas * optimize random,candle and fadecandy json schemas
70 lines
1.3 KiB
JSON
70 lines
1.3 KiB
JSON
{
|
|
"type":"object",
|
|
"script" : "sparks.py",
|
|
"title":"edt_eff_sparks_header",
|
|
"required":true,
|
|
"properties":{
|
|
"color": {
|
|
"type": "array",
|
|
"title":"edt_eff_color",
|
|
"format":"colorpicker",
|
|
"default": [255,0,0],
|
|
"items" : {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"maximum": 255
|
|
},
|
|
"minItems": 3,
|
|
"maxItems": 3,
|
|
"options": {
|
|
"dependencies": {
|
|
"random-color": false
|
|
}
|
|
},
|
|
"propertyOrder" : 1
|
|
},
|
|
"rotation-time": {
|
|
"type": "number",
|
|
"title":"edt_eff_rotationtime",
|
|
"default": 2.0,
|
|
"minimum" : 0.1,
|
|
"append" : "edt_append_s",
|
|
"propertyOrder" : 2
|
|
},
|
|
"sleep-time": {
|
|
"type": "number",
|
|
"title":"edt_eff_sleeptime",
|
|
"default": 0.05,
|
|
"minimum" : 0.01,
|
|
"propertyOrder" : 3
|
|
},
|
|
"brightness": {
|
|
"type": "integer",
|
|
"title":"edt_eff_brightness",
|
|
"default": 100,
|
|
"minimum" : 0,
|
|
"maximum" : 100,
|
|
"step" : 10,
|
|
"append" : "edt_append_percent",
|
|
"propertyOrder" : 4
|
|
},
|
|
"saturation": {
|
|
"type": "integer",
|
|
"title":"edt_eff_saturation",
|
|
"default": 100,
|
|
"minimum" : 0,
|
|
"maximum" : 100,
|
|
"step" : 10,
|
|
"append" : "edt_append_percent",
|
|
"propertyOrder" : 5
|
|
},
|
|
"random-color": {
|
|
"type": "boolean",
|
|
"title":"edt_eff_colorrandom",
|
|
"default": false,
|
|
"propertyOrder" : 6
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|