mirror of
https://github.com/mtan93/SmartThingsPublic.git
synced 2026-03-21 21:03:47 +00:00
Compare commits
1 Commits
MSA-1306-2
...
MSA-1308-1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3de3ee96e6 |
@@ -12,7 +12,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
metadata {
|
metadata {
|
||||||
definition (name: "재부재 센서", namespace: "smartthings", author: "김성훈") {
|
definition (name: "재부재 센서", namespace: "smartthings", author: "HYEJIN") {
|
||||||
capability "Tone"
|
capability "Tone"
|
||||||
capability "Actuator"
|
capability "Actuator"
|
||||||
capability "Signal Strength"
|
capability "Signal Strength"
|
||||||
|
|||||||
49
smartapps/smartthings/-.src/-.groovy
Normal file
49
smartapps/smartthings/-.src/-.groovy
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
/**
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* Lights Off, When Closed
|
||||||
|
*
|
||||||
|
* Author: SmartThings
|
||||||
|
*/
|
||||||
|
definition(
|
||||||
|
name: "불을 꺼라",
|
||||||
|
namespace: "smartthings 불을꺼라",
|
||||||
|
author: "LEE HYE JIN",
|
||||||
|
description: "문이 닫히면 불을 꺼라",
|
||||||
|
category: "Convenience",
|
||||||
|
iconUrl: "http://postfiles15.naver.net/20110419_110/fm20_1303196773441csi0D_JPEG/%C0%FC%B1%B8.jpg?type=w2",
|
||||||
|
iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Meta/light_contact-outlet@2x.png"
|
||||||
|
)
|
||||||
|
|
||||||
|
preferences {
|
||||||
|
section ("When the door closes...") {
|
||||||
|
input "contact1", "capability.contactSensor", title: "Where?"
|
||||||
|
}
|
||||||
|
section ("Turn off a light...") {
|
||||||
|
input "switch1", "capability.switch"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def installed()
|
||||||
|
{
|
||||||
|
subscribe(contact1, "contact.closed", contactClosedHandler)
|
||||||
|
}
|
||||||
|
|
||||||
|
def updated()
|
||||||
|
{
|
||||||
|
unsubscribe()
|
||||||
|
subscribe(contact1, "contact.closed", contactClosedHandler)
|
||||||
|
}
|
||||||
|
|
||||||
|
def contactClosedHandler(evt) {
|
||||||
|
switch1.off()
|
||||||
|
}
|
||||||
@@ -1,56 +0,0 @@
|
|||||||
/**
|
|
||||||
* 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.
|
|
||||||
*
|
|
||||||
* Turn It On For 5 Minutes
|
|
||||||
* Turn on a switch when a contact sensor opens and then turn it back off 5 minutes later.
|
|
||||||
*
|
|
||||||
* Author: SmartThings
|
|
||||||
*/
|
|
||||||
definition(
|
|
||||||
name: "Turn It On For 1 Minutes",
|
|
||||||
namespace: "smartthings",
|
|
||||||
author: "mr.kim",
|
|
||||||
description: "When a SmartSense Multi is opened, a switch will be turned on, and then turned off after 5 minutes.",
|
|
||||||
category: "Safety & Security",
|
|
||||||
iconUrl: "https://s3.amazonaws.com/smartapp-icons/Meta/light_contact-outlet.png",
|
|
||||||
iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Meta/light_contact-outlet@2x.png"
|
|
||||||
)
|
|
||||||
|
|
||||||
preferences {
|
|
||||||
section("When it opens..."){
|
|
||||||
input "contact1", "capability.contactSensor"
|
|
||||||
}
|
|
||||||
section("Turn on a switch for 5 minutes..."){
|
|
||||||
input "switch1", "capability.switch"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
def installed() {
|
|
||||||
log.debug "Installed with settings: ${settings}"
|
|
||||||
subscribe(contact1, "contact.open", contactOpenHandler)
|
|
||||||
}
|
|
||||||
|
|
||||||
def updated(settings) {
|
|
||||||
log.debug "Updated with settings: ${settings}"
|
|
||||||
unsubscribe()
|
|
||||||
subscribe(contact1, "contact.open", contactOpenHandler)
|
|
||||||
}
|
|
||||||
|
|
||||||
def contactOpenHandler(evt) {
|
|
||||||
switch1.on()
|
|
||||||
def fiveMinuteDelay = 60 * 1
|
|
||||||
runIn(fiveMinuteDelay, turnOffSwitch)
|
|
||||||
}
|
|
||||||
|
|
||||||
def turnOffSwitch() {
|
|
||||||
switch1.off()
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user