Commenting out the Verify API calls in the object instantiation to avoid state explos...
[smartthings-infrastructure.git] / ColorControl / ColorControls.groovy
index d96b978d774579c4f7efcb2519d86d8b4adb9985..39dfeaa8ab3c8d3a3fb84a4bc269c82a07f0e309 100644 (file)
@@ -24,7 +24,7 @@ public class ColorControls {
                this.deviceNumbers = deviceNumbers
                this.colorControls = []
 
-               def initHue = Verify.getIntFromList(30, 50, 70)
+               /*def initHue = Verify.getIntFromList(30, 50, 70)
                this.hue = initHue
                def initSat = Verify.getIntFromList(40, 50, 60)
                this.saturation = initSat
@@ -35,7 +35,7 @@ public class ColorControls {
                        this.color = "green"
                } else {
                        this.color = "blue"
-               }
+               }*/
 
                colorControls.add(new ColorControl(id, label, displayName, this.color, this.hue, this.saturation))
        }