Another adjustment to 'under the sea'
[kaka/cakelight.git] / src / kaka / cakelight / AmbientMode.java
index 0b41b4c..2b10e31 100644 (file)
@@ -35,7 +35,7 @@ public class AmbientMode extends Mode { // TODO split into DynamicAmbient and St
                         updateFrame(frame, System.currentTimeMillis() - start, index);
                         updateWithFrame(frame);
                         index = (index + 1) % config.leds.getCount();
-                        Thread.sleep(0);
+                        Thread.sleep(20);
                     }
                 } catch (InterruptedException e) {
                 }
@@ -64,8 +64,8 @@ public class AmbientMode extends Mode { // TODO split into DynamicAmbient and St
             for (int i = 0; i < config.leds.getCount(); i++) {
                 double x = frame.xOf(i);
                 double y = frame.yOf(i);
-                double g = Math.min(1, Math.max(0, noise.getr(-0.5, 0.5, 0.5, x, y, time / 5000.0)));
-                double b = Math.pow(Math.min(1, Math.max(0, noise.getr(0, 0.9, 1, x, y, time / 7000.0))), 2);
+                double b = Math.pow(Math.min(1, Math.max(0, noise.getr(0.0, 1.0, 1, x, y, time / 7000.0))), 1.5);
+                double g = Math.min(1, Math.max(0, noise.getr(-b, b, 0.5, x*3, y*3, time / 5000.0)));
                 frame.setLedColor(i, Color.rgb(0, g, b));
             }
         } else if (type == 2) {