definition(
name: "All Off",
namespace: "hubitat",
author: "Bruce Ravenel",
description: "Turn Devices Off with Recheck",
category: "Convenience",
iconUrl: "",
iconX2Url: ""
)
preferences {
page(name: "mainPage")
}
Map mainPage() {
dynamicPage(name: "mainPage", title: "All Off", uninstall: true, install: true) {
section {
input "appName", "text", title: "Name this instance of All Off", submitOnChange: true
if(appName) app.updateLabel(appName)
input "switches", "capability.switch", title: "Switches to turn off", multiple: true
This file has been truncated. show original