Bugfix - draw leds black when list is off instead of skipping
[kaka/cakelight.git] / src / kaka / cakelight / Color.java
index fe010c7..c3f782f 100644 (file)
@@ -1,6 +1,8 @@
 package kaka.cakelight;
 
 public class Color {
+    public static final Color BLACK = Color.rgb(0, 0, 0);
+
     private static int[] gammaCorrection = new int[256];
 
     public static void calculateGammaCorrection(double gamma) {