Skip to content

Commit

Permalink
Fix ICP-5100. Increasing the Encap delay. (SmartThingsCommunity#3265)
Browse files Browse the repository at this point in the history
  • Loading branch information
sagar-trility authored and greens committed Jul 31, 2018
1 parent 2f2430d commit b326013
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,15 @@ def on() {
def cmds = []
cmds << [zwave.basicV1.basicSet(value: 0xFF),1]
cmds << [zwave.switchBinaryV1.switchBinaryGet(),1]
encapSequence(cmds,500)
encapSequence(cmds,2000)
}

def off() {
log.debug "off"
def cmds = []
cmds << [zwave.basicV1.basicSet(value: 0),1]
cmds << [zwave.switchBinaryV1.switchBinaryGet(),1]
encapSequence(cmds,500)
encapSequence(cmds,2000)
}

def reset() {
Expand Down

0 comments on commit b326013

Please sign in to comment.