diff options
Diffstat (limited to 'EveryLaserXSerialChar/EveryLaserXSerialChar.ino')
-rw-r--r-- | EveryLaserXSerialChar/EveryLaserXSerialChar.ino | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/EveryLaserXSerialChar/EveryLaserXSerialChar.ino b/EveryLaserXSerialChar/EveryLaserXSerialChar.ino index 3769381..0b2daf9 100644 --- a/EveryLaserXSerialChar/EveryLaserXSerialChar.ino +++ b/EveryLaserXSerialChar/EveryLaserXSerialChar.ino @@ -483,7 +483,7 @@ void setScrollDelay() { String inString = "";
uint16_t newScrollDelay = 1000;
- Serial.println("Enter fade delay and hit enter");
+ Serial.println("Enter scroll delay and hit enter");
Serial.setTimeout(2500);
inString = Serial.parseInt();
@@ -656,8 +656,8 @@ void setValue() { String inString = "";
float newValue = 0.0;
- Serial.println("Enter saturation and hit enter");
-
+ Serial.println("Enter value and hit enter");
+
Serial.setTimeout(2500);
inString = Serial.parseFloat();
Serial.setTimeout(1000);
@@ -747,10 +747,10 @@ void setup(void) { LEDs.begin();
Serial.println("c (colorspace) C (colortype)");
Serial.println("d (fade delay) D (scroll delay)");
- Serial.println("h (hue/hue) s (scroll) t (text string)");
+ Serial.println("h (hue) s (scroll) t (text string)");
Serial.println("v (value) V (saturation)");
-
- // Clear interrupt
+
+ // Clear interrupt
cli();
// Configure TCB1
|