mirror of
https://github.com/mtan93/SmartThingsPublic.git
synced 2026-03-21 13:10:51 +00:00
52 lines
1.5 KiB
Groovy
52 lines
1.5 KiB
Groovy
/**
|
|
* 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}"
|
|
}
|
|
} |