From 8a0c98f8672e0b52a70f183c22421cf3d1033d9a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tomas=20Wenstr=C3=B6m?= Date: Sun, 11 Aug 2019 11:56:17 +0200 Subject: [PATCH] Add gamma control in console --- src/kaka/cakelight/Console.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/kaka/cakelight/Console.java b/src/kaka/cakelight/Console.java index caae09b..43ebd13 100644 --- a/src/kaka/cakelight/Console.java +++ b/src/kaka/cakelight/Console.java @@ -33,7 +33,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 +47,11 @@ 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]); + System.out.println("setting gamma to " + config.gamma); + break; } } catch (IOException e) { System.out.println("Error reading from command line"); @@ -54,5 +59,4 @@ public class Console extends Thread { } } } - } -- 2.11.0