mirror of
https://github.com/mtan93/SmartThingsPublic.git
synced 2026-03-16 05:10:50 +00:00
MSA-708: This app is a parent-child app with the parent being Rule Machine and the child Rule. Extensive documentation is located on the Community Forum, https://community.smartthings.com/t/release-rule-machine/28730
This commit is contained in:
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