StringParameter&argAddress=parameters.add<StringParameter>('a',"address",QString("Set the address of the hyperion server [default: %1]").arg(defaultServerAddress).toAscii().constData());
IntParameter&argPriority=parameters.add<IntParameter>('p',"priority",QString("Use to the provided priority channel (the lower the number, the higher the priority) [default: %1]").arg(defaultPriority).toAscii().constData());
IntParameter&argDuration=parameters.add<IntParameter>('d',"duration","Specify how long the leds should be switched on in millseconds. Without this parameter, the leds will be switched on without end time.");
StringParameter&argColor=parameters.add<StringParameter>('c',"color","Set all leds to a constant color (either RRGGBB hex value or a color name)");
StringParameter&argImage=parameters.add<StringParameter>('i',"image","Set the leds to the colors according to the given image file");
SwitchParameter&argList=parameters.add<SwitchParameter>('l',"list","List all priority channels which are in use");
SwitchParameter&argClear=parameters.add<SwitchParameter>('x',"clear","Clear data for the priority channel provided by the -p option");
DoubleParameter&argGamma=parameters.add<DoubleParameter>('g',"gamma","Set the gamma of the leds (requires 3 values)");
DoubleParameter&argThreshold=parameters.add<DoubleParameter>('t',"threshold","Set the threshold of the leds (requires 3 values between 0.0 and 1.0)");
DoubleParameter&argBlacklevel=parameters.add<DoubleParameter>('b',"blacklevel","Set the blacklevel of the leds (requires 3 values which are normally between 0.0 and 1.0)");
DoubleParameter&argWhitelevel=parameters.add<DoubleParameter>('w',"whitelevel","Set the whitelevel of the leds (requires 3 values which are normally between 0.0 and 1.0)");