This is probably something stupidly simple, but when I have this line in my prefs:
section("But don't turn on the lights after my bedtime of..."){
input "bedtime", "text", title: "Bedtime", required: false
}
then the simulator works and I can enter stuff and do my testing. However, if I change the input to be a time value instead of text, like this:
section("But don't turn on the lights after my bedtime of..."){
input "bedtime", "time", title: "Bedtime", required: false
}
then the simulator won’t progress past setting my location! I set the location as “Home” and the progress bar spins for a second, then nothing. The actual inputs don’t appear and I can’t do anything until I change the above input back to a “text” value. I’ve looked at tons of examples, and everyone seems to be doing what I’m doing and not having trouble. Anyone have any idea?