X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=src%2Fkaka%2Fcakelight%2FConsole.java;h=caf8195780bbe62ebf1cc958a881ad908fb6b234;hb=67b0a75891f19e91cc35e23fa56915cfd7cd52de;hp=caae09b80793726b9e25ecf0245954a6116cb53f;hpb=884380465ae1ae412b7e5858ade7fd3f77da497f;p=kaka%2Fcakelight.git diff --git a/src/kaka/cakelight/Console.java b/src/kaka/cakelight/Console.java index caae09b..caf8195 100644 --- a/src/kaka/cakelight/Console.java +++ b/src/kaka/cakelight/Console.java @@ -1,5 +1,9 @@ package kaka.cakelight; +import kaka.cakelight.mode.AmbientMode; +import kaka.cakelight.mode.SingleColorMode; +import kaka.cakelight.mode.VideoMode; + import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; @@ -33,7 +37,7 @@ public class Console extends Thread { } else if (input.matches("(b|brightness)\\s+[0-9]+")) { String[] split = input.split("\\s+"); config.leds.brightness = Integer.parseInt(split[1]); - System.out.println("setting brightness to " + split[1]); + System.out.println("setting brightness to " + config.leds.brightness); } else if (input.matches("q|quit")) { cakelight.turnOff(); System.out.println("stopping cakelight"); @@ -47,6 +51,15 @@ public class Console extends Thread { ); cakelight.setMode(new SingleColorMode(c)); System.out.println("setting color to " + c); + } else if (input.matches("(g|gamma)\\s+[0-9.]+")) { + String[] split = input.split("\\s+"); + config.gamma = Double.parseDouble(split[1]); + Color.calculateGammaCorrection(config.gamma); + System.out.println("setting gamma to " + config.gamma); + } else if (input.matches("(s|saturation)\\s+[0-9.]+")) { + String[] split = input.split("\\s+"); + config.video.saturation = Double.parseDouble(split[1]); + System.out.println("setting saturation to " + config.video.saturation); } } catch (IOException e) { System.out.println("Error reading from command line"); @@ -54,5 +67,4 @@ public class Console extends Thread { } } } - }