mirror of
https://github.com/mtan93/SmartThingsPublic.git
synced 2026-03-15 21:03:23 +00:00
Compare commits
1 Commits
DEVTOOLS-1
...
MSA-708-3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
55765f67b7 |
52
smartapps/bravenel/rule-machine.src/rule-machine.groovy
Normal file
52
smartapps/bravenel/rule-machine.src/rule-machine.groovy
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
/**
|
||||||
|
* Rule
|
||||||
|
*
|
||||||
|
* Copyright 2015 Bruce Ravenel
|
||||||
|
*
|
||||||
|
* Version 1.1.0 25 Nov 2015
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
definition(
|
||||||
|
name: "Rule Machine",
|
||||||
|
singleInstance: true,
|
||||||
|
namespace: "bravenel",
|
||||||
|
author: "Bruce Ravenel",
|
||||||
|
description: "Rule Machine",
|
||||||
|
category: "My Apps",
|
||||||
|
iconUrl: "https://s3.amazonaws.com/smartapp-icons/ModeMagic/Cat-ModeMagic.png",
|
||||||
|
iconX2Url: "https://s3.amazonaws.com/smartapp-icons/ModeMagic/Cat-ModeMagic@2x.png",
|
||||||
|
iconX3Url: "https://s3.amazonaws.com/smartapp-icons/ModeMagic/Cat-ModeMagic@3x.png"
|
||||||
|
)
|
||||||
|
|
||||||
|
preferences {
|
||||||
|
page(name: "mainPage", title: "Rules", install: true, uninstall: true,submitOnChange: true) {
|
||||||
|
section {
|
||||||
|
app(name: "childRules", appName: "Rule", namespace: "bravenel", title: "Create New Rule...", multiple: true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def installed() {
|
||||||
|
initialize()
|
||||||
|
}
|
||||||
|
|
||||||
|
def updated() {
|
||||||
|
unsubscribe()
|
||||||
|
initialize()
|
||||||
|
}
|
||||||
|
|
||||||
|
def initialize() {
|
||||||
|
childApps.each {child ->
|
||||||
|
log.info "Installed Rules: ${child.label}"
|
||||||
|
}
|
||||||
|
}
|
||||||
1005
smartapps/bravenel/rule.src/rule.groovy
Normal file
1005
smartapps/bravenel/rule.src/rule.groovy
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user