Skip to content

Commit

Permalink
Moved low power setting to row 4.
Browse files Browse the repository at this point in the history
  • Loading branch information
gbevin committed Mar 2, 2015
1 parent a915ec2 commit 2799613
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ls_displayModes.ino
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ void paintGlobalSettingsDisplay() {

// Show the low power mode
if (Device.operatingLowPower) {
lightLed(15, 2);
lightLed(15, 3);
}

// set light for serial mode
Expand Down
2 changes: 1 addition & 1 deletion ls_settings.ino
Original file line number Diff line number Diff line change
Expand Up @@ -1278,7 +1278,7 @@ void handleGlobalSettingNewTouch() {
else if (sensorRow == 1) {
changeMidiIO(0);
}
else if (sensorRow == 2) {
else if (sensorRow == 3) {
Device.operatingLowPower = !Device.operatingLowPower;
applyLowPowerMode();
}
Expand Down

0 comments on commit 2799613

Please sign in to comment.