Infrastructure that works for all the locks' group!
[smartthings-infrastructure.git] / Switch / Switches.groovy
index 9007388794254b1decf95d3eca6d96aae4978df7..5a4ef48e77bd6bc5b51d0de6b2bbf27e0c082d38 100644 (file)
@@ -2,6 +2,9 @@
 package Switch
 import Timer.SimulatedTimer
 
+//JPF's Verify API
+import gov.nasa.jpf.vm.Verify
+
 public class Switches {
        int deviceNumbers       
        List switches
@@ -23,6 +26,19 @@ public class Switches {
                this.deviceNumbers = deviceNumbers
                this.switches = []
 
+               def initLevel = Verify.getIntFromList(30, 50, 70)
+               this.currentLevel = initLevel
+               def init = Verify.getBoolean()
+               if (init) {
+                       this.switchState = "off"
+                       this.currentSwitch = "off"
+                       this.switchLatestValue = "off"
+               } else {
+                       this.switchState = "on"
+                       this.currentSwitch = "on"
+                       this.switchLatestValue = "on"
+               }
+
                switches.add(new Switch(sendEvent, id, label, displayName, this.switchState, this.currentSwitch, this.currentLevel, this.switchLatestValue))
        }