How to format an Application URL
Application URL's are built in four parts; The Program, the Endpoint, the Action, and the Arguments. The program is easy as its always the same!
signalrgb://
After the entry point you'll need to pick your endpoint. Lets say we want to set an effect, so we just use effect as our endpoint. You can find all of the Endpoints and their respective actions on the left side!
signalrgb://effect/
We want to apply an effect so its a simple apply
action followed by the effect name Drizzle
.
signalrgb://effect/apply/Drizzle
After this you can add any URL parameters you'd like for the settings. I like Drizzle to have rainbowMode
enabled so we'll start there. In normal URL fashion arguments are always after a ?
, and are separated by &
if you have more then one.
signalrgb://effect/apply/Drizzle?rainbowMode=true
Note: The setting names are the property values used in the code as the settings Id, Not the description displayed to the user in the UI.