)
preferences {
+ page (name: "timeIntervalInput", title: "Only during a certain time") {
+ section {
+ input "starting", "time", title: "Starting", required: false
+ input "ending", "time", title: "Ending", required: false
+ }
+ }
+
page(name: "selectRoutines")
page(name: "Settings", title: "Settings", uninstall: true, install: true) {
options: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]
input "modes", "mode", title: "Only when mode is", multiple: true, required: false
}
-
- section {
- input "starting", "time", title: "Starting", required: false
- input "ending", "time", title: "Ending", required: false
- }
+
+ section("Change to this mode") {
+ input "newMode", "mode", title: "Mode?"
+ }
}
}