Help with Tslagles Big Switch for Hello Home Phrases

Hi all,

I’m trying to use this app to facilitate a virtual switch to change mode, and it works great, with the exception of when I try to set a time block for it (IE only works between 3 pm and 6 pm). For some reason when I select that option nothing comes up to select a time block. It just swirlies and nothing happens. The other options work fine. Below is the code I pulled, is there an error in it?

/**

  • Big Switch for Hello Home Phrases
  • Copyright 2014 Tim Slagle
  • 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: “Big Switch for Hello Home Phrases”,
namespace: “”,
author: “Tim Slagle”,
description: “Uses a virtual switch to run hello home phrases.”,
category: “Convenience”,
iconUrl: “https://s3.amazonaws.com/smartapp-icons/Convenience/Cat-Convenience.png”,
iconX2Url: “https://s3.amazonaws.com/smartapp-icons/Convenience/Cat-Convenience@2x.png
)

preferences {
page(name: “selectPhrases”)

page( name:"Settings", title:"Settings", uninstall:true, install:true ) {
section(title: "More options", hidden: hideOptionsSection(), hideable: true) {

		def timeLabel = timeIntervalLabel()

		href "timeIntervalInput", title: "Only during a certain time", description: timeLabel ?: "Tap to set", state: timeLabel ? "complete" : null

		input "days", "enum", title: "Only on certain days of the week", multiple: true, required: false,
			options: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]

		input "modes", "mode", title: "Only when mode is", multiple: true, required: false
	}

}
}

def selectPhrases() {
def configured = (settings.HHPhraseOff && settings.HHPhraseOn)
dynamicPage(name: “selectPhrases”, title: “Configure”, nextPage:“Settings”, uninstall: true) {
section(“When this switch is turned on or off”) {
input “master”, “capability.switch”, title: “Where?”
}
def phrases = location.helloHome?.getPhrases()*.label
if (phrases) {
phrases.sort()
section(“Run These Hello Home Phrases When…”) {
log.trace phrases
input “HHPhraseOn”, “enum”, title: “The Switch Turns On”, required: true, options: phrases, refreshAfterSelection:true
input “HHPhraseOff”, “enum”, title: “The Switch Turns Off”, required: true, options: phrases, refreshAfterSelection:true

	}
	}
}

}

def installed(){
subscribe(master, “switch.on”, onHandler)
subscribe(master, “switch.off”, offHandler)
}

def updated(){
unsubscribe()
subscribe(master, “switch.on”, onHandler)
subscribe(master, “switch.off”, offHandler)
}

def onHandler(evt) {
log.debug evt.value
log.info(“Running Light On Event”)
sendNotificationEvent(“Performing “${HHPhraseOn}” because ${master} turned on.”)
location.helloHome.execute(settings.HHPhraseOn)
}

def offHandler(evt) {
log.debug evt.value
log.info(“Running Light Off Event”)
sendNotificationEvent(“Performing “${HHPhraseOff}” because ${master} turned off.”)
location.helloHome.execute(settings.HHPhraseOff)
}

private getAllOk() {
modeOk && daysOk && timeOk
}

private getModeOk() {
def result = !modes || modes.contains(location.mode)
log.trace "modeOk = $result"
result
}

private getDaysOk() {
def result = true
if (days) {
def df = new java.text.SimpleDateFormat(“EEEE”)
if (location.timeZone) {
df.setTimeZone(location.timeZone)
}
else {
df.setTimeZone(TimeZone.getTimeZone(“America/New_York”))
}
def day = df.format(new Date())
result = days.contains(day)
}
log.trace "daysOk = $result"
result
}

private getTimeOk() {
def result = true
if (starting && ending) {
def currTime = now()
def start = timeToday(starting).time
def stop = timeToday(ending).time
result = start < stop ? currTime >= start && currTime <= stop : currTime <= stop || currTime >= start
}
log.trace "timeOk = $result"
result
}

private hhmm(time, fmt = “h:mm a”)
{
def t = timeToday(time, location.timeZone)
def f = new java.text.SimpleDateFormat(fmt)
f.setTimeZone(location.timeZone ?: timeZone(time))
f.format(t)
}

private hideOptionsSection() {
(starting || ending || days || modes) ? false : true
}

private timeIntervalLabel() {
(starting && ending) ? hhmm(starting) + “-” + hhmm(ending, “h:mm a z”) : “”
}