} 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");
);
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]);
+ System.out.println("setting gamma to " + config.gamma);
+ break;
}
} catch (IOException e) {
System.out.println("Error reading from command line");
}
}
}
-
}