Increase delay between pattern repetitions
[chledclk] / chledclk.vala
index 2420fcc..f6ad07c 100644 (file)
@@ -42,10 +42,10 @@ class ChargingLEDClock : Object {
                string pattern = "9d804000";
                int jump = 2;
                if (time.hour >= 20) {
-                       pattern += "087f09ffa082";
+                       pattern += "0c7f0dffa082";
                        jump += 3;
                } else if (time.hour >= 10) {
-                       pattern += "087f09ff";
+                       pattern += "0c7f0dff";
                        jump += 2;
                }
                if ((time.hour % 10) > 1) {
@@ -63,7 +63,7 @@ class ChargingLEDClock : Object {
                        pattern += "047f05ff";
                if ((time.minute % 10) >= 5)
                        pattern += "043f057f";
-               pattern += "71050000";
+               pattern += "21ff0000";
 
                print ("setting pattern: %s\n", pattern);