From fafcd1ba9f737b7803cc92f5b199df05235b1066 Mon Sep 17 00:00:00 2001 From: manzerbredes Date: Tue, 29 Mar 2016 15:57:52 +0200 Subject: [PATCH] Add state --- src/drivers/Driver_1770_ff00.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/drivers/Driver_1770_ff00.java b/src/drivers/Driver_1770_ff00.java index 602c29a..9b1d169 100644 --- a/src/drivers/Driver_1770_ff00.java +++ b/src/drivers/Driver_1770_ff00.java @@ -24,7 +24,7 @@ public class Driver_1770_ff00 implements Driver, DriverTypeA{ /** * Define Keyboard color state */ - private HashMap> KeyboardColor=new HashMap<>(); + private HashMap> keyboardColorsState=new HashMap<>(); /** * Define Keyboard mode state @@ -88,6 +88,7 @@ public class Driver_1770_ff00 implements Driver, DriverTypeA{ try { this.device.sendFeatureReport(this.getReport(1,2,66,region.intValue(),color.intValue(),intensity.intValue(),0,236)); this.commit(); + this.keyboardColorsState.put(region, new Pair(color, intensity)); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); @@ -104,6 +105,10 @@ public class Driver_1770_ff00 implements Driver, DriverTypeA{ this.device.sendFeatureReport(this.getReport(1,2,66,Region.MIDDLE.intValue(),color.intValue(),intensity.intValue(),0,236)); this.device.sendFeatureReport(this.getReport(1,2,66,Region.RIGHT.intValue(),color.intValue(),intensity.intValue(),0,236)); this.commit(); + this.keyboardColorsState.put(Region.LEFT, new Pair(color, intensity)); + this.keyboardColorsState.put(Region.MIDDLE, new Pair(color, intensity)); + this.keyboardColorsState.put(Region.RIGHT, new Pair(color, intensity)); + } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace();