Adding missing methods etc.
[smartthings-infrastructure.git] / StepSensor / StepSensors.groovy
index fbfe70ff48fabd34813d64d2ee59e92af1b9097c..d9200c6a24e258144af1c4ca66576836e6a407d6 100644 (file)
@@ -2,9 +2,6 @@
 package StepSensor
 import Timer.SimulatedTimer
 
-//JPF's Verify API
-import gov.nasa.jpf.vm.Verify
-
 public class StepSensors {
        private int deviceNumbers
        private List stepSensors
@@ -18,16 +15,18 @@ public class StepSensors {
        private int steps = 0
 
                
-       StepSensors(Closure sendEvent, int deviceNumbers) {
+       StepSensors(Closure sendEvent, int deviceNumbers, boolean init) {
                this.sendEvent = sendEvent              
                this.deviceNumbers = deviceNumbers
                this.stepSensors = []
 
-               /*def initGoal = Verify.getIntFromList(1000, 2000, 3000)
-               this.goal = initGoal
-               def initSteps = Verify.getIntFromList(0, 1, 2)
-               this.steps = initSteps*/
-
+               if (init) {
+                       this.goal = 50
+                       this.steps = 35
+               } else {
+                       this.goal = 40
+                       this.steps = 60
+               }
                stepSensors.add(new StepSensor(id, label, displayName, this.steps, this.goal))
        }