From: Rahmadi Trimananda Date: Fri, 9 Aug 2019 23:33:43 +0000 (-0700) Subject: Update WorkingFromHome.groovy X-Git-Url: http://plrg.eecs.uci.edu/git/?p=smartapps.git;a=commitdiff_plain;h=3647b7c7fd1a4431936627da06459155c76597f8 Update WorkingFromHome.groovy --- diff --git a/third-party/WorkingFromHome.groovy b/third-party/WorkingFromHome.groovy index 588c82e..8cd86fc 100755 --- a/third-party/WorkingFromHome.groovy +++ b/third-party/WorkingFromHome.groovy @@ -32,6 +32,8 @@ def configActions() { dynamicPage(name: "configActions", title: "Configure Actions", uninstall: true, install: true) { section ("When this person") { input "person", "capability.presenceSensor", title: "Who?", multiple: false, required: true + input "days", "enum", title: "Set for specific day(s) of the week", multiple: true, required: false, + options: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"] } section ("Still at home past") { input "timeOfDay", "time", title: "What time?", required: true @@ -48,8 +50,8 @@ def configActions() { section (title: "More options", hidden: hideOptions(), hideable: true) { input "sendPushMessage", "bool", title: "Send a push notification?" input "phone", "phone", title: "Send a Text Message?", required: false - input "days", "enum", title: "Set for specific day(s) of the week", multiple: true, required: false, - options: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"] + //input "days", "enum", title: "Set for specific day(s) of the week", multiple: true, required: false, + // options: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"] } section([mobileOnly:true]) { @@ -70,9 +72,9 @@ def updated() { def initialize() { schedule(timeToday(timeOfDay, location.timeZone), "checkPresence") - if (customName) { - app.setTitle(customName) - } + //if (customName) { + // app.setTitle(customName) + //} } def checkPresence() {