Focus: Less formatting in the dump commands

Fixes #1.

Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
pull/389/head
Gergely Nagy 8 years ago
parent a407ac3fea
commit 84b5e94440

@ -102,9 +102,7 @@ namespace KaleidoscopePlugins {
EEPROM.get (paletteBase + i * sizeof (color), color); EEPROM.get (paletteBase + i * sizeof (color), color);
::Focus.printColor (color); ::Focus.printColor (color);
::Focus.printSpace ();
if (i < 14)
::Focus.printSeparator ();
} }
Serial.println (); Serial.println ();
break; break;
@ -137,14 +135,13 @@ namespace KaleidoscopePlugins {
indexes = EEPROM.read (mapBase + loc); indexes = EEPROM.read (mapBase + loc);
::Focus.printNumber (indexes >> 4); ::Focus.printNumber (indexes >> 4);
::Focus.printSeparator (); ::Focus.printSpace ();
::Focus.printNumber (indexes & ~0xf0); ::Focus.printNumber (indexes & ~0xf0);
::Focus.printSeparator (); ::Focus.printSpace ();
} }
Serial.println ();
} }
Serial.println ();
} }
Serial.println ();
break; break;
} }

Loading…
Cancel
Save