Compare commits

..

1 Commits

Author SHA1 Message Date
Anna Peacock
8263a6bd8a MSA-2138: See my accessibzj 2017-07-31 13:13:42 -07:00
4 changed files with 95 additions and 129 deletions

View File

@@ -173,27 +173,11 @@ private Map getBatteryResult(rawValue) {
} else { } else {
def minVolts = 2.4 def minVolts = 2.4
def maxVolts = 2.7 def maxVolts = 2.7
// Get the current battery percentage as a multiplier 0 - 1 def pct = (volts - minVolts) / (maxVolts - minVolts)
def curValVolts = Integer.parseInt(device.currentState("battery")?.value ?: "100") / 100.0 def roundedPct = Math.round(pct * 100)
// Find the corresponding voltage from our range if (roundedPct <= 0)
curValVolts = curValVolts * (maxVolts - minVolts) + minVolts roundedPct = 1
// Round to the nearest 10th of a volt result.value = Math.min(100, roundedPct)
curValVolts = Math.round(10 * curValVolts) / 10.0
// Only update the battery reading if we don't have a last reading,
// OR we have received the same reading twice in a row
// OR we don't currently have a battery reading
// OR the value we just received is at least 2 steps off from the last reported value
if(state?.lastVolts == null || state?.lastVolts == volts || device.currentState("battery")?.value == null || Math.abs(curValVolts - volts) > 0.1) {
def pct = (volts - minVolts) / (maxVolts - minVolts)
def roundedPct = Math.round(pct * 100)
if (roundedPct <= 0)
roundedPct = 1
result.value = Math.min(100, roundedPct)
} else {
// Don't update as we want to smooth the battery values
result = null
}
state.lastVolts = volts
} }
} }

View File

@@ -275,27 +275,11 @@ private Map getBatteryResult(rawValue) {
} else { } else {
def minVolts = 2.1 def minVolts = 2.1
def maxVolts = 2.7 def maxVolts = 2.7
// Get the current battery percentage as a multiplier 0 - 1 def pct = (volts - minVolts) / (maxVolts - minVolts)
def curValVolts = Integer.parseInt(device.currentState("battery")?.value ?: "100") / 100.0 def roundedPct = Math.round(pct * 100)
// Find the corresponding voltage from our range if (roundedPct <= 0)
curValVolts = curValVolts * (maxVolts - minVolts) + minVolts roundedPct = 1
// Round to the nearest 10th of a volt result.value = Math.min(100, roundedPct)
curValVolts = Math.round(10 * curValVolts) / 10.0
// Only update the battery reading if we don't have a last reading,
// OR we have received the same reading twice in a row
// OR we don't currently have a battery reading
// OR the value we just received is at least 2 steps off from the last reported value
if(state?.lastVolts == null || state?.lastVolts == volts || device.currentState("battery")?.value == null || Math.abs(curValVolts - volts) > 0.1) {
def pct = (volts - minVolts) / (maxVolts - minVolts)
def roundedPct = Math.round(pct * 100)
if (roundedPct <= 0)
roundedPct = 1
result.value = Math.min(100, roundedPct)
} else {
// Don't update as we want to smooth the battery values
result = null
}
state.lastVolts = volts
} }
} }

View File

@@ -88,21 +88,19 @@ import physicalgraph.zwave.commands.usercodev1.*
def installed() { def installed() {
// Device-Watch pings if no device events received for 1 hour (checkInterval) // Device-Watch pings if no device events received for 1 hour (checkInterval)
sendEvent(name: "checkInterval", value: 1 * 60 * 60, displayed: false, data: [protocol: "zwave", hubHardwareId: device.hub.hardwareID]) sendEvent(name: "checkInterval", value: 1 * 60 * 60, displayed: false, data: [protocol: "zwave", hubHardwareId: device.hub.hardwareID])
try {
if (!state.init) {
state.init = true
// Wait long enough for behind-the-scenes z-wave magic to finish, but be quick enough before hub goes back into inclusion and blocks us
response(["delay 2000"] + secureSequence([zwave.doorLockV1.doorLockOperationGet(), zwave.batteryV1.batteryGet()], 2200))
}
} catch (e) {
log.warn "installed() threw $e"
}
} }
def updated() { def updated() {
// Device-Watch pings if no device events received for 1 hour (checkInterval) // Device-Watch pings if no device events received for 1 hour (checkInterval)
sendEvent(name: "checkInterval", value: 1 * 60 * 60, displayed: false, data: [protocol: "zwave", hubHardwareId: device.hub.hardwareID]) sendEvent(name: "checkInterval", value: 1 * 60 * 60, displayed: false, data: [protocol: "zwave", hubHardwareId: device.hub.hardwareID])
try {
if (!state.init) {
state.init = true
response(secureSequence([zwave.doorLockV1.doorLockOperationGet(), zwave.batteryV1.batteryGet()]))
}
} catch (e) {
log.warn "updated() threw $e"
}
} }
def parse(String description) { def parse(String description) {

View File

@@ -1,77 +1,77 @@
/** /**
* Copyright 2015 SmartThings * Copyright 2015 SmartThings
* *
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at: * in compliance with the License. You may obtain a copy of the License at:
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License
* for the specific language governing permissions and limitations under the License. * for the specific language governing permissions and limitations under the License.
* *
* Text Me When There's Motion and I'm Not Here * Text Me When There's Motion and I'm Not Here
* *
* Author: SmartThings * Author: SmartThings
*/ */
definition( definition(
name: "Text Me When There's Motion and I'm Not Here", name: "Text Me When There's Motion and I'm Not Here",
namespace: "smartthings", namespace: "smartthings",
author: "SmartThings", author: "SmartThings",
description: "Send a text message when there is motion while you are away.", description: "Send a text message when there is motion while you are away.",
category: "Convenience", category: "Convenience",
iconUrl: "https://s3.amazonaws.com/smartapp-icons/Meta/intruder_motion-presence.png", iconUrl: "https://s3.amazonaws.com/smartapp-icons/Meta/intruder_motion-presence.png",
iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Meta/intruder_motion-presence@2x.png" iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Meta/intruder_motion-presence@2x.png"
) )
preferences { preferences {
section("When there's movement...") { section("When there's movement...") {
input "motion1", "capability.motionSensor", title: "Where?" input "motion1", "capability.motionSensor", title: "Where?"
} }
section("While I'm out...") { section("While I'm out...") {
input "presence1", "capability.presenceSensor", title: "Who?" input "presence1", "capability.presenceSensor", title: "Who?"
} }
section("Text me at...") { section("Text me at...") {
input("recipients", "contact", title: "Send notifications to") { input("recipients", "contact", title: "Send notifications to") {
input "phone1", "phone", title: "Phone number?" input "phone1", "phone", title: "Phone number?"
} }
} }
} }
def installed() { def installed() {
subscribe(motion1, "motion.active", motionActiveHandler) subscribe(motion1, "motion.active", motionActiveHandler)
} }
def updated() { def updated() {
unsubscribe() unsubscribe()
subscribe(motion1, "motion.active", motionActiveHandler) subscribe(motion1, "motion.active", motionActiveHandler)
} }
def motionActiveHandler(evt) { def motionActiveHandler(evt) {
log.trace "$evt.value: $evt, $settings" log.trace "$evt.value: $evt, $settings"
if (presence1.latestValue("presence") == "not present") { if (presence1.latestValue("presence") == "not present") {
// Don't send a continuous stream of text messages // Don't send a continuous stream of text messages
def deltaSeconds = 10 def deltaSeconds = 10
def timeAgo = new Date(now() - (1000 * deltaSeconds)) def timeAgo = new Date(now() - (1000 * deltaSeconds))
def recentEvents = motion1.eventsSince(timeAgo) def recentEvents = motion1.eventsSince(timeAgo)
log.debug "Found ${recentEvents?.size() ?: 0} events in the last $deltaSeconds seconds" log.debug "Found ${recentEvents?.size() ?: 0} events in the last $deltaSeconds seconds"
def alreadySentSms = recentEvents.count { it.value && it.value == "active" } > 1 def alreadySentSms = recentEvents.count { it.value && it.value == "active" } > 1
if (alreadySentSms) { if (alreadySentSms) {
log.debug "SMS already sent within the last $deltaSeconds seconds" log.debug "SMS already sent within the last $deltaSeconds seconds"
} else { } else {
if (location.contactBookEnabled) { if (location.contactBookEnabled) {
log.debug "$motion1 has moved while you were out, sending notifications to: ${recipients?.size()}" log.debug "$motion1 has moved while you were out, sending notifications to: ${recipients?.size()}"
sendNotificationToContacts("${motion1.label} ${motion1.name} moved while you were out", recipients) sendNotificationToContacts("${motion1.label} ${motion1.name} moved while you were out", recipients)
} }
else { else {
log.debug "$motion1 has moved while you were out, sending text" log.debug "$motion1 has moved while you were out, sending text"
sendSms(phone1, "${motion1.label} ${motion1.name} moved while you were out") sendSms(phone1, "${motion1.label} ${motion1.name} moved while you were out")
} }
} }
} else { } else {
log.debug "Motion detected, but presence sensor indicates you are present" log.debug "Motion detected, but presence sensor indicates you are present"
} }
} }