mirror of
https://github.com/mtan93/SmartThingsPublic.git
synced 2026-03-10 05:11:51 +00:00
Compare commits
1 Commits
MSA-2140-2
...
MSA-2138-1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8263a6bd8a |
@@ -1,108 +0,0 @@
|
||||
/**
|
||||
* MQTT Bridge
|
||||
*
|
||||
* Authors
|
||||
* - st.john.johnson@gmail.com
|
||||
* - jeremiah.wuenschel@gmail.com
|
||||
*
|
||||
* Copyright 2016
|
||||
*
|
||||
* 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:
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
*/
|
||||
|
||||
import groovy.json.JsonSlurper
|
||||
import groovy.json.JsonOutput
|
||||
|
||||
metadata {
|
||||
definition (name: "MQTT Bridge", namespace: "stj", author: "St. John Johnson and Jeremiah Wuenschel") {
|
||||
capability "Notification"
|
||||
}
|
||||
|
||||
preferences {
|
||||
input("ip", "string",
|
||||
title: "MQTT Bridge IP Address",
|
||||
description: "MQTT Bridge IP Address",
|
||||
required: true,
|
||||
displayDuringSetup: true
|
||||
)
|
||||
input("port", "string",
|
||||
title: "MQTT Bridge Port",
|
||||
description: "MQTT Bridge Port",
|
||||
required: true,
|
||||
displayDuringSetup: true
|
||||
)
|
||||
input("mac", "string",
|
||||
title: "MQTT Bridge MAC Address",
|
||||
description: "MQTT Bridge MAC Address",
|
||||
required: true,
|
||||
displayDuringSetup: true
|
||||
)
|
||||
}
|
||||
|
||||
simulator {}
|
||||
|
||||
tiles {
|
||||
valueTile("basic", "device.ip", width: 3, height: 2) {
|
||||
state("basic", label:'OK')
|
||||
}
|
||||
main "basic"
|
||||
}
|
||||
}
|
||||
|
||||
// Store the MAC address as the device ID so that it can talk to SmartThings
|
||||
def setNetworkAddress() {
|
||||
// Setting Network Device Id
|
||||
def hex = "$settings.mac".toUpperCase().replaceAll(':', '')
|
||||
if (device.deviceNetworkId != "$hex") {
|
||||
device.deviceNetworkId = "$hex"
|
||||
log.debug "Device Network Id set to ${device.deviceNetworkId}"
|
||||
}
|
||||
}
|
||||
|
||||
// Parse events from the Bridge
|
||||
def parse(String description) {
|
||||
setNetworkAddress()
|
||||
|
||||
log.debug "Parsing '${description}'"
|
||||
def msg = parseLanMessage(description)
|
||||
|
||||
return createEvent(name: "message", value: new JsonOutput().toJson(msg.data))
|
||||
}
|
||||
|
||||
// Send message to the Bridge
|
||||
def deviceNotification(message) {
|
||||
if (device.hub == null)
|
||||
{
|
||||
log.error "Hub is null, must set the hub in the device settings so we can get local hub IP and port"
|
||||
return
|
||||
}
|
||||
|
||||
log.debug "Sending '${message}' to device"
|
||||
setNetworkAddress()
|
||||
|
||||
def slurper = new JsonSlurper()
|
||||
def parsed = slurper.parseText(message)
|
||||
|
||||
if (parsed.path == '/subscribe') {
|
||||
parsed.body.callback = device.hub.getDataValue("localIP") + ":" + device.hub.getDataValue("localSrvPortTCP")
|
||||
}
|
||||
|
||||
def headers = [:]
|
||||
headers.put("HOST", "$ip:$port")
|
||||
headers.put("Content-Type", "application/json")
|
||||
|
||||
def hubAction = new physicalgraph.device.HubAction(
|
||||
method: "POST",
|
||||
path: parsed.path,
|
||||
headers: headers,
|
||||
body: parsed.body
|
||||
)
|
||||
hubAction
|
||||
}
|
||||
@@ -1,77 +1,77 @@
|
||||
/**
|
||||
* Copyright 2015 SmartThings
|
||||
*
|
||||
* 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:
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
*
|
||||
* Text Me When There's Motion and I'm Not Here
|
||||
*
|
||||
* Author: SmartThings
|
||||
*/
|
||||
|
||||
definition(
|
||||
name: "Text Me When There's Motion and I'm Not Here",
|
||||
namespace: "smartthings",
|
||||
author: "SmartThings",
|
||||
description: "Send a text message when there is motion while you are away.",
|
||||
category: "Convenience",
|
||||
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"
|
||||
)
|
||||
|
||||
preferences {
|
||||
section("When there's movement...") {
|
||||
input "motion1", "capability.motionSensor", title: "Where?"
|
||||
}
|
||||
section("While I'm out...") {
|
||||
input "presence1", "capability.presenceSensor", title: "Who?"
|
||||
}
|
||||
section("Text me at...") {
|
||||
input("recipients", "contact", title: "Send notifications to") {
|
||||
input "phone1", "phone", title: "Phone number?"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
def installed() {
|
||||
subscribe(motion1, "motion.active", motionActiveHandler)
|
||||
}
|
||||
|
||||
def updated() {
|
||||
unsubscribe()
|
||||
subscribe(motion1, "motion.active", motionActiveHandler)
|
||||
}
|
||||
|
||||
def motionActiveHandler(evt) {
|
||||
log.trace "$evt.value: $evt, $settings"
|
||||
|
||||
if (presence1.latestValue("presence") == "not present") {
|
||||
// Don't send a continuous stream of text messages
|
||||
def deltaSeconds = 10
|
||||
def timeAgo = new Date(now() - (1000 * deltaSeconds))
|
||||
def recentEvents = motion1.eventsSince(timeAgo)
|
||||
log.debug "Found ${recentEvents?.size() ?: 0} events in the last $deltaSeconds seconds"
|
||||
def alreadySentSms = recentEvents.count { it.value && it.value == "active" } > 1
|
||||
|
||||
if (alreadySentSms) {
|
||||
log.debug "SMS already sent within the last $deltaSeconds seconds"
|
||||
} else {
|
||||
if (location.contactBookEnabled) {
|
||||
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)
|
||||
}
|
||||
else {
|
||||
log.debug "$motion1 has moved while you were out, sending text"
|
||||
sendSms(phone1, "${motion1.label} ${motion1.name} moved while you were out")
|
||||
}
|
||||
}
|
||||
} else {
|
||||
log.debug "Motion detected, but presence sensor indicates you are present"
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Copyright 2015 SmartThings
|
||||
*
|
||||
* 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:
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
*
|
||||
* Text Me When There's Motion and I'm Not Here
|
||||
*
|
||||
* Author: SmartThings
|
||||
*/
|
||||
|
||||
definition(
|
||||
name: "Text Me When There's Motion and I'm Not Here",
|
||||
namespace: "smartthings",
|
||||
author: "SmartThings",
|
||||
description: "Send a text message when there is motion while you are away.",
|
||||
category: "Convenience",
|
||||
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"
|
||||
)
|
||||
|
||||
preferences {
|
||||
section("When there's movement...") {
|
||||
input "motion1", "capability.motionSensor", title: "Where?"
|
||||
}
|
||||
section("While I'm out...") {
|
||||
input "presence1", "capability.presenceSensor", title: "Who?"
|
||||
}
|
||||
section("Text me at...") {
|
||||
input("recipients", "contact", title: "Send notifications to") {
|
||||
input "phone1", "phone", title: "Phone number?"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
def installed() {
|
||||
subscribe(motion1, "motion.active", motionActiveHandler)
|
||||
}
|
||||
|
||||
def updated() {
|
||||
unsubscribe()
|
||||
subscribe(motion1, "motion.active", motionActiveHandler)
|
||||
}
|
||||
|
||||
def motionActiveHandler(evt) {
|
||||
log.trace "$evt.value: $evt, $settings"
|
||||
|
||||
if (presence1.latestValue("presence") == "not present") {
|
||||
// Don't send a continuous stream of text messages
|
||||
def deltaSeconds = 10
|
||||
def timeAgo = new Date(now() - (1000 * deltaSeconds))
|
||||
def recentEvents = motion1.eventsSince(timeAgo)
|
||||
log.debug "Found ${recentEvents?.size() ?: 0} events in the last $deltaSeconds seconds"
|
||||
def alreadySentSms = recentEvents.count { it.value && it.value == "active" } > 1
|
||||
|
||||
if (alreadySentSms) {
|
||||
log.debug "SMS already sent within the last $deltaSeconds seconds"
|
||||
} else {
|
||||
if (location.contactBookEnabled) {
|
||||
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)
|
||||
}
|
||||
else {
|
||||
log.debug "$motion1 has moved while you were out, sending text"
|
||||
sendSms(phone1, "${motion1.label} ${motion1.name} moved while you were out")
|
||||
}
|
||||
}
|
||||
} else {
|
||||
log.debug "Motion detected, but presence sensor indicates you are present"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user