Added a rainbow noise mode
[kaka/cakelight.git] / src / kaka / cakelight / Console.java
index a856203..b82806f 100644 (file)
@@ -25,7 +25,7 @@ public class Console extends Thread {
             System.out.print("> ");
             try {
                 String input = reader.readLine();
-                if (input.equals("0") || input.equals("1") || input.equals("2")) {
+                if (input.matches("[0-5]")) {
                    cakelight.setMode(new AmbientMode(new String[] {input}));
                    System.out.println("setting ambient mode to " + input);
                } else if (input.matches("(b|brightness)\\s+[0-9]+")) {
@@ -33,7 +33,7 @@ public class Console extends Thread {
                    config.leds.brightness = Integer.parseInt(split[1]);
                    System.out.println("setting brightness to " + split[1]);
                } else if (input.matches("q|quit")) {
-                   cakelight.cleanup();
+                   cakelight.turnOff();
                    System.out.println("stopping cakelight");
                    break;
                }