Change method format
This commit is contained in:
parent
d730c93309
commit
72dde0cd93
1 changed files with 3 additions and 6 deletions
|
@ -154,19 +154,16 @@ public class Driver{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public void setColor(Color color, Intensity intensity){
|
public void setColor(Color color, Intensity intensity, Region region){
|
||||||
try {
|
try {
|
||||||
this.device.sendFeatureReport(this.getReport(1,2,66,Region.LEFT.intValue(),color.intValue(),intensity.intValue(),0,236));
|
this.device.sendFeatureReport(this.getReport(1,2,66,region.intValue(),color.intValue(),intensity.intValue(),0,236));
|
||||||
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.setMode(Mode.NORMAL);
|
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
// TODO Auto-generated catch block
|
// TODO Auto-generated catch block
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setMode(Mode mode){
|
public void commit(Mode mode){
|
||||||
try {
|
try {
|
||||||
this.device.sendFeatureReport(this.getReport(1,2,65,mode.intValue(),0,0,0,236));
|
this.device.sendFeatureReport(this.getReport(1,2,65,mode.intValue(),0,0,0,236));
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue