We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Guidelines
Is your feature request related to a problem? Please describe. Is the device is in sleep you can see the colors when you edit them in the app.
Describe the solution you'd like When the app is open the device or at least the leds should be on to see the new colors.
Describe alternatives you've considered Wake up the device but turning the encoder
The text was updated successfully, but these errors were encountered:
RGB is not part of the settings message. I think we should include it in. But either way, it will have to wait for comms rework.
Edit: RGB is in settings. ProcessPackage returning true does not update activity time. Was dropped somewhere.
Sorry, something went wrong.
In MaxMix.ino, change this:
g_DisplayDirty = (command >= Command::SETTINGS || command <= Command::VOLUME_ALT_CHANGE); if (command == Command::CURRENT_SESSION || command == Command::ALTERNATE_SESSION || command == Command::VOLUME_CURR_CHANGE || command == Command::VOLUME_ALT_CHANGE) { g_LastActivity = g_Now; g_DisplayDirty = true; }
To this:
if (command >= Command::SETTINGS || command <= Command::VOLUME_NEXT_CHANGE) { g_LastActivity = g_Now; g_DisplayDirty = true; }
SchemingWeasels
No branches or pull requests
Guidelines
Is your feature request related to a problem? Please describe.
Is the device is in sleep you can see the colors when you edit them in the app.
Describe the solution you'd like
When the app is open the device or at least the leds should be on to see the new colors.
Describe alternatives you've considered
Wake up the device but turning the encoder
The text was updated successfully, but these errors were encountered: