Hi Guys-
Iām trying to copy over a smart app which connects to the Rheem EcoNet service for their Hot Water heaters and Thermostats.
It seems like the login maybe succeeding, or not. It seems to succeed on the 2nd try, but the drop down in the next screen, is empty so maybe not.
It looks like the code is logging someplace, but I donāt know where to look for it. Nothing on the Logs page. Any hints? The same code works on SmartThings.
OK well it looks like Iām getting a token, so I believe the login is succeeding. I think the problem may be with the drop down list here:
def hvacList = getHvacList()
if (hvacList) {
return dynamicPage(name: "prefListDevice", title: "Devices", install:true, uninstall:true) {
section("Select which thermostat to use"){
input(name: "thermostat", type: "enum", required:false, multiple:true, metadata:[values:hvacList])
}
}
I get to the page with the drop down here, but the list is just some weird little empty thing. It seems to exist, but I canāt select from it. Again, logging anywhere? Thx.