Skip to content

Commit a553781

Browse files
committed
Change color saturation for success message in helpwidget
1 parent b499a54 commit a553781

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

OpenBCI_GUI/ADS1299SettingsController.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ class ADS1299SettingsController {
300300
if (!atLeastOneChannelHasChanged) {
301301
output("No new settings to send to board.");
302302
} else if (noErrors) {
303-
output("Hardware Settings sent to board!");
303+
outputSuccess("Hardware Settings sent to board!");
304304
} else {
305305
PopupMessage msg = new PopupMessage("Error", "Failed to send one or more Hardware Settings to board. Check hardware and battery level. Cyton users, check that your dongle is connected with blue light shining.");
306306
}

OpenBCI_GUI/Debugging.pde

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ class HelpWidget {
158158
return color(199, sat, 97);
159159
case SUCCESS:
160160
//base color - #DFF2BF;
161-
maxSat = 50;
162-
sat = 25;
161+
maxSat = 25;
162+
sat = 0;
163163
sat = (int)map(fadeVal, 0, 100, sat, maxSat);
164164
return color(106, sat, 95);
165165
case WARN:

0 commit comments

Comments
 (0)