Add breathe mode
This commit is contained in:
parent
09b9f7cad0
commit
232a405d39
2 changed files with 4 additions and 4 deletions
|
@ -49,16 +49,16 @@ public class App
|
|||
App app =new App();
|
||||
CmdLineParser parser = new CmdLineParser(app);
|
||||
parser.parseArgument(args);
|
||||
app.parseArguments();
|
||||
app.parseArguments();
|
||||
new MainWindow();
|
||||
/* DriverTypeA device=new Driver_1770_ff00();
|
||||
/*DriverTypeA device=new Driver_1770_ff00();
|
||||
Driver a=(Driver) device;
|
||||
a.initDriver();
|
||||
device.setRegionColor(Region.LEFT, Color.RED, Intensity.HIGH);
|
||||
device.setRegionColor(Region.MIDDLE, Color.ORANGE, Intensity.HIGH);
|
||||
device.setRegionColor(Region.RIGHT, Color.PURPLE, Intensity.HIGH);
|
||||
|
||||
device.setMode(Mode.WAVE);*/
|
||||
device.setMode(Mode.BREATHE);*/
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -136,7 +136,7 @@ public class Driver_1770_ff00 implements Driver, DriverTypeA{
|
|||
this.mode=mode;
|
||||
|
||||
// Apply wave mode
|
||||
if(this.mode==Mode.WAVE){
|
||||
if(this.mode==Mode.WAVE || this.mode==Mode.BREATHE){
|
||||
for(int i=0;i<Region.values().length;i++){
|
||||
int entry=i*3; // 3 entry for each region (left:1,2,3 -- middle:4,5,6 -- right:7,8,9)
|
||||
try {
|
||||
|
|
Loading…
Add table
Reference in a new issue