Hello, some effects have arguments which I tried to set via hyperion-remote without any success. What would be the correct command line to start the Knight rider effect in green for example? This is the original json file: Code: { "name" : "Knight rider", "script" : "knight-rider.py", "args" : { "speed" : 1.0, "fadeFactor" : 0.7, "color" : [255,0,0] } } I'm looking for a command like this: Code: hyperion-remote --effect 'Knight rider' "color":[0,255,0] But it's not working. Please help.
hyperion-remote --effect 'name' --effectArgs '{ the whole args block without newlines and with your mofifications. }' E.g. --effectArgs '{ "speed" : 1.0, "fadeFactor" : 0.7, "color" : [0,255,0] }'
... as addition, the args string must be in valid json form. If you get errors you can validate your string with a online json validator