You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed the Spotify visualizer feature. Spotify recently updated their API which broke a part of the app.
Added command line control support. This is a feature for advanced users and is separate from the main app. It can be used as an alternative to the "shortcuts" feature in the app. One of the ways I use this feature is by setting operating system level shortcuts that execute commands. This way, I don't have to keep Nanoleaf for Desktop open in the background. The downside to this is that the command line commands execute take about a half of a second longer than "shortcuts" to execute.
Commands can be executed in the following generic way: java -jar nfd.jar -a {COMMAND <args>}. Note that nfd.jar is the name of the Nanoleaf for Desktop app executable. COMMAND is one of the commands below. <args> is the extra information that is passed into the command (not required for all commands; see below).
The following commands are available:
DEVICE_ON ---- turns the device on
DEVICE_OFF ---- turns the device off
DEVICE_TOGGLE ---- toggles the device state (on->off, off->on)
INCREASE_BRIGHTNESS <amount> ---- increases the brightness by a percent (0-100%)
DECREASE_BRIGHTNESS <amount> ---- decreases the brightness by a percent (0-100%)
SET_BRIGHTNESS <amount> ---- sets the brightness as a percent (0-100%)
INCREASE_COLOR_TEMP <amount> ---- increases the color temperature by an amount in degrees kelvin (1200-6500)
DECREASE_COLOR_TEMP <amount> ---- decreases the color temperature by an amount in degrees kelvin (1200-6500)
SET_COLOR_TEMP <amount> ---- sets the color temperature in degrees kelvin (1200-6500)
SET_EFFECT <name> ---- sets the effect by name
SET_HUE <amount> ---- sets the static color hue (0-360)
SET_SATURATION <amount> ---- sets the static color saturation (0-100%)
SET_RED <amount> ---- sets the static color RGB red component (0-255)
SET_GREEN <amount> ---- sets the static color RGB green component (0-255)
SET_BLUE <amount> ---- sets the static color RGB blue component (0-255)