Added console command to switch to video mode
[kaka/cakelight.git] / src / kaka / cakelight / Console.java
index 6339138..7d864d8 100644 (file)
@@ -25,9 +25,11 @@ public class Console extends Thread {
             System.out.print("> ");
             try {
                 String input = reader.readLine();
-                if (input.equals("0") || input.equals("1") || input.equals("2") || input.equals("3") || input.equals("4")) {
+                if (input.matches("[0-5]")) {
                    cakelight.setMode(new AmbientMode(new String[] {input}));
                    System.out.println("setting ambient mode to " + input);
+               } else if (input.matches("v|video")) {
+                    cakelight.setMode(new VideoMode());
                } else if (input.matches("(b|brightness)\\s+[0-9]+")) {
                    String[] split = input.split("\\s+");
                    config.leds.brightness = Integer.parseInt(split[1]);