
tazman
Members-
Posts
585 -
Joined
-
Last visited
Everything posted by tazman
-
@Javi I'm not sure what you mean with the connect function but I don't see anything in the file I cut the information from and posted above. I'm going to attach 2 files that seem like they could be relevant and if they are not it I guess I will just go back to giving up. websocket.js WebSocketConnection.js
-
@JaviBelow is the main area that looks to me it defines the websocket. Would you be able to tell me what to change to make it work? // make websocket connection to any ISY hub // unlike ST and HE below, communication from ISY happens over a real webSocket var wshost; for (var h in GLB.options.config["hubs"]) { var hub = GLB.options.config["hubs"][h]; wshost = false; if ( hub["hubType"]==="ISY" && hub["hubEndpt"] && hub["hubAccess"] ) { var hubhost = hub["hubEndpt"]; if ( hubhost.startsWith("https://") ) { wshost = "wss://" + hubhost.substr(8); } else if ( hubhost.startsWith("http://") ) { wshost = "ws://" + hubhost.substr(7); } } // set up socket for ISY hub if one is there if ( wshost ) { var wsclient = new webSocketClient(); var buff = Buffer.from(hub["hubAccess"]); var base64 = buff.toString('base64'); var origin = "com.universal-devices.websockets.isy"; var header = {"Authorization": "Basic " + base64, "Sec-WebSocket-Protocol": "ISYSUB", "Sec-WebSocket-Version": "13", "Origin": "com.universal-devices.websockets.isy"}; wshost = wshost + "/subscribe"; wsclient.on("connectFailed", function(err) { console.log( (ddbg()), "Connection failure to ISY socket: ", err.toString(), " wshost: ", wshost, " header: ", header); }); wsclient.on("connect", function(connection) { console.log( (ddbg()), "Success connecting to ISY socket. Listening for messages..."); // handle incoming state messages from ISY // this will be ignored if the node isn't in our list connection.on("message", function(msg) { if ( msg.type==="utf8" ) { processIsyMessage(msg.utf8Data); } }); connection.on("error", function(err) { console.log( (ddbg()), "Connection error to ISY socket: ", err.toString()); }); connection.on("close", function() { console.log( (ddbg()), "Connection closed to ISY socket"); }); }); wsclient.connect(wshost, "ISYSUB", origin, header); } } }
-
Thank you @Javi I'm trying not to be to much of a pain that is why I left it go until others brought it back. I really don't know programing and I don't think UDI should have to support other people's software but I appreciate all you have done so far to help!
-
@Javi I tried but I don't know what to change because it would not load with what I did. If it is something that will eventually work I can wait. I found ISYSUB 2 places in the hpserver.js file. If I just remove the firs bold it still worked the same with the below error V2.418 on 2/1/2022 8:27:04 PM Connection failure to ISY socket: Error: Expected a Sec-WebSocket-Protocol header. wshost: ws://192.168.0.30:8080/rest/subscribe header: { var header = {"Authorization": "Basic " + base64, "Sec-WebSocket-Protocol": "ISYSUB", "Sec-WebSocket-Version": "13", "Origin": "com.universal-devices.websockets.isy"}; wshost = wshost + "/subscribe"; and }); wsclient.connect(wshost, "ISYSUB", origin, header); }
-
I went into an older version of housepanel. The log file looks like this with the old 994 7/27/2020 4:08:52 PM Loading 1 hubs. 7/27/2020 4:08:53 PM HousePanel Node.js Server is running on port: 3080 7/27/2020 4:08:53 PM webSocket Server is listening on port: 1380 7/27/2020 4:08:53 PM Success connecting to ISY socket. Listening for messages... 7/27/2020 4:09:06 PM **************************************************************** Serving page at: http://192.168.0.40:3080 **************************************************************** 7/27/2020 4:09:06 PM Displaying main HousePanel web page: http://192.168.0.40:3080 7/27/2020 4:09:06 PM **************************************************************** Serving page at: http://192.168.0.40:3080 **************************************************************** 7/27/2020 4:09:06 PM Displaying main HousePanel web page: http://192.168.0.40:3080 7/27/2020 4:09:08 PM Connection accepted. Client #0 host=::ffff:192.168.0.40 Client count: 1 Pushing client #0 7/27/2020 4:09:27 PM Peer: ::ffff:192.168.0.40 disconnected. for: 1001 desc: Remote peer is going away All I did was change the IP address for ISY to the Polisy one and I get this and have the same behavior of not updating devices state 2/1/2022 7:00:48 PM Loading 1 hubs. 2/1/2022 7:00:49 PM HousePanel Node.js Server is running on port: 3080 2/1/2022 7:00:49 PM webSocket Server is listening on port: 1380 2/1/2022 7:00:49 PM Connection failure to ISY socket: Error: Expected a Sec-WebSocket-Protocol header. wshost: ws://192.168.0.30:8080/rest/subscribe header: { Authorization: 'Sec-WebSocket-Protocol': 'ISYSUB', 'Sec-WebSocket-Version': '13', Origin: 'com.universal-devices.websockets.isy' }
-
This is what it shows in the error log V2.418 on 2/1/2022 6:33:23 PM Connection failure to ISY socket: Error: Expected a Sec-WebSocket-Protocol header. wshost: ws://192.168.0.30:8080/rest/subscribe header: { Authorization: 'Sec-WebSocket-Protocol': 'ISYSUB', 'Sec-WebSocket-Version': '13', Origin: 'com.universal-devices.websockets.isy' }
-
Unfortunately that did not work @Javi and it made things weird that items in housepanel would not show a status change when I clicked on them until I refreshed the browser.
-
This is what is in my hmoption.config file which lists the isy information "hubs": [ { "hubType": "ISY", "hubHost": "http://192.168.0.30:8080", "clientId": "editusername", "clientSecret": "editpassword", "userAccess": "editusername:editpassword", "userEndpt": "http://192.168.0.30:8080/rest", "hubName": "ISY", "hubId": "isy01", "hubAccess": "editusername:editpassword", "hubEndpt": "http://192.168.0.30:8080/rest", "hubTimer": "0" Is there something I can change in here that might make it work?
-
@Javithe port 3080 is what I use in a Web browser to connect to housepanel
-
Well with housepanel it gets the devices from ISY and the proper state. I can turn them on and of and if I refresh the browser the state changes properly. The only thing is when the state changes it is not pushed to housepanel.
-
No unfortunately and I don't have the technical ability to figure it out and it seems the person who wrote the program I was using is not around anymore.
-
I can confirm it worked for me now thanks Michel!
-
Yes take a well deserved brake! At least we have access and I will try my older Z-Wave locks tomorrow to see how well they work.
-
-
@Michel Kohanim the link downloads the admin console from Polisy and works but using the launcher (https://isy.universal-devices.com/start.jnlp) does not work for local access.
-
I did the auto update and I got the admin console does not match the firmware error. Cleared Java files and downloaded the start.jnlp file again and retrieved the admin console directly from Polisy but it did not help. I also did sudo pkg update && sudo pkg upgrade and rebooted manually multiple times but can only access using the (cloud) option of the launcher. The good news is my Z-Wave Sensative door and window strip is reporting properly now!
-
In my notes I have to start over sudo pkg remove isy sudo pkg install isy sudo service isy restart
-
@Michel KohanimI added another Z-Wave device but it is not functioning properly https://www.amazon.com/gp/product/B01LWMTUI8/ref=ox_sc_saved_title_5?smid=A1O77D5UJY7IVU&psc=1 Nodes on ISY <node flag="128" nodeDefId="UZW0003"> <address>ZW011_1</address> <name>ZW 011 Notify Sensor</name> <family>4</family> <type>4.7.1.0</type> <enabled>true</enabled> <deviceClass>0</deviceClass> <wattage>0</wattage> <dcPeriod>0</dcPeriod> <startDelay>0</startDelay> <endDelay>0</endDelay> <pnode>ZW011_1</pnode> <rpnode>ZW011_1</rpnode> <sgid>1</sgid> <custom flags="8" val1="0"/> <devtype> <gen>4.7.1</gen> <mfg>410.3.3</mfg> <cat>185</cat> </devtype> <ELK_ID>A02</ELK_ID> </node> <node flag="0" nodeDefId="UZW0004"> <address>ZW011_104</address> <name>ZW 011 Binary Sensor 1</name> <family>4</family> <parent type="1">ZW011_1</parent> <type>4.7.1.0</type> <enabled>true</enabled> <deviceClass>0</deviceClass> <wattage>0</wattage> <dcPeriod>0</dcPeriod> <startDelay>0</startDelay> <endDelay>0</endDelay> <pnode>ZW011_1</pnode> <rpnode>ZW011_1</rpnode> <sgid>104</sgid> <custom flags="40" val1="0"/> <devtype> <gen>4.7.1</gen> <mfg>410.3.3</mfg> <cat>104</cat> </devtype> <ELK_ID>A03</ELK_ID> <property id="ST" value="100" formatted="On" uom="78"/> </node> <node flag="0" nodeDefId="UZW0005"> <address>ZW011_306</address> <name>ZW 011 Access Control Alarm</name> <family>4</family> <parent type="1">ZW011_1</parent> <type>4.7.1.0</type> <enabled>true</enabled> <deviceClass>0</deviceClass> <wattage>0</wattage> <dcPeriod>0</dcPeriod> <startDelay>0</startDelay> <endDelay>0</endDelay> <pnode>ZW011_1</pnode> <rpnode>ZW011_1</rpnode> <sgid>306</sgid> <custom flags="8" val1="0"/> <devtype> <gen>4.7.1</gen> <mfg>410.3.3</mfg> <cat>306</cat> </devtype> <ELK_ID>A04</ELK_ID> </node> <node flag="0" nodeDefId="UZW0006"> <address>ZW011_184</address> <name>ZW 011 Barrier 1</name> <family>4</family> <parent type="1">ZW011_1</parent> <type>4.7.1.0</type> <enabled>true</enabled> <deviceClass>0</deviceClass> <wattage>0</wattage> <dcPeriod>0</dcPeriod> <startDelay>0</startDelay> <endDelay>0</endDelay> <pnode>ZW011_1</pnode> <rpnode>ZW011_1</rpnode> <sgid>184</sgid> <custom flags="8" val1="0"/> <devtype> <gen>4.7.1</gen> <mfg>410.3.3</mfg> <cat>184</cat> </devtype> <ELK_ID>A05</ELK_ID> <property id="ST" value="100" formatted="Open" uom="97"/> </node> <node flag="0" nodeDefId="thingnodetype"> <address>n004_fdlockeded</address> <name>FD Locked</name> <family instance="4">10</family> <parent type="1">n004_controller</parent> <type>0.0.0.0</type> <enabled>true</enabled> <deviceClass>0</deviceClass> <wattage>0</wattage> <dcPeriod>0</dcPeriod> <startDelay>0</startDelay> <endDelay>0</endDelay> <pnode>n004_controller</pnode> <ELK_ID>A06</ELK_ID> </node> <node flag="0" nodeDefId="UZW0008"> <address>ZW011_308</address> <name>ZW 011 Home Security Alarm</name> <family>4</family> <parent type="1">ZW011_1</parent> <type>4.7.1.0</type> <enabled>true</enabled> <deviceClass>0</deviceClass> <wattage>0</wattage> <dcPeriod>0</dcPeriod> <startDelay>0</startDelay> <endDelay>0</endDelay> <pnode>ZW011_1</pnode> <rpnode>ZW011_1</rpnode> <sgid>308</sgid> <custom flags="8" val1="0"/> <devtype> <gen>4.7.1</gen> <mfg>410.3.3</mfg> <cat>308</cat> </devtype> <ELK_ID>A07</ELK_ID> </node> <node flag="0" nodeDefId="UZW0009"> <address>ZW011_173</address> <name>ZW 011 Tamper Code Alarm 1</name> <family>4</family> <parent type="1">ZW011_1</parent> <type>4.7.1.0</type> <enabled>true</enabled> <deviceClass>0</deviceClass> <wattage>0</wattage> <dcPeriod>0</dcPeriod> <startDelay>0</startDelay> <endDelay>0</endDelay> <pnode>ZW011_1</pnode> <rpnode>ZW011_1</rpnode> <sgid>173</sgid> <custom flags="8" val1="0"/> <devtype> <gen>4.7.1</gen> <mfg>410.3.3</mfg> <cat>173</cat> </devtype> <ELK_ID>A08</ELK_ID> <property id="ST" value="" formatted=" " uom="0"/> </node> Node on Polisy <node flag="128" nodeDefId="UZW0077"> <address>ZW004_1</address> <name>ZW 004 Notify Sensor</name> <family>4</family> <type>4.7.1.0</type> <enabled>true</enabled> <deviceClass>0</deviceClass> <wattage>0</wattage> <dcPeriod>0</dcPeriod> <startDelay>0</startDelay> <endDelay>0</endDelay> <pnode>ZW004_1</pnode> <rpnode>ZW004_1</rpnode> <sgid>1</sgid> <custom flags="8" val1="0"/> <devtype> <gen>4.7.1</gen> <mfg>410.3.3</mfg> <cat>185</cat> </devtype> </node> <node flag="0" nodeDefId="UZW0078"> <address>ZW004_104</address> <name>ZW 004 Binary Sensor 1</name> <family>4</family> <parent type="1">ZW004_1</parent> <type>4.7.1.0</type> <enabled>true</enabled> <deviceClass>0</deviceClass> <wattage>0</wattage> <dcPeriod>0</dcPeriod> <startDelay>0</startDelay> <endDelay>0</endDelay> <pnode>ZW004_1</pnode> <rpnode>ZW004_1</rpnode> <sgid>104</sgid> <custom flags="40" val1="0"/> <devtype> <gen>4.7.1</gen> <mfg>410.3.3</mfg> <cat>104</cat> </devtype> <property id="ST" value="100" formatted="On" uom="78"/> </node> <node flag="0" nodeDefId="UZW0079"> <address>ZW004_306</address> <name>ZW 004 Access Control Alarm</name> <family>4</family> <parent type="1">ZW004_1</parent> <type>4.7.1.0</type> <enabled>true</enabled> <deviceClass>0</deviceClass> <wattage>0</wattage> <dcPeriod>0</dcPeriod> <startDelay>0</startDelay> <endDelay>0</endDelay> <pnode>ZW004_1</pnode> <rpnode>ZW004_1</rpnode> <sgid>306</sgid> <custom flags="8" val1="0"/> <devtype> <gen>4.7.1</gen> <mfg>410.3.3</mfg> <cat>306</cat> </devtype> </node> <node flag="0" nodeDefId="UZW007A"> <address>ZW004_184</address> <name>ZW 004 Barrier 1</name> <family>4</family> <parent type="1">ZW004_1</parent> <type>4.7.1.0</type> <enabled>true</enabled> <deviceClass>0</deviceClass> <wattage>0</wattage> <dcPeriod>0</dcPeriod> <startDelay>0</startDelay> <endDelay>0</endDelay> <pnode>ZW004_1</pnode> <rpnode>ZW004_1</rpnode> <sgid>184</sgid> <custom flags="8" val1="0"/> <devtype> <gen>4.7.1</gen> <mfg>410.3.3</mfg> <cat>184</cat> </devtype> <property id="ST" value="" formatted=" " uom="0"/> </node> <node flag="0" nodeDefId="UZW007B"> <address>ZW004_308</address> <name>ZW 004 Home Security Alarm</name> <family>4</family> <parent type="1">ZW004_1</parent> <type>4.7.1.0</type> <enabled>true</enabled> <deviceClass>0</deviceClass> <wattage>0</wattage> <dcPeriod>0</dcPeriod> <startDelay>0</startDelay> <endDelay>0</endDelay> <pnode>ZW004_1</pnode> <rpnode>ZW004_1</rpnode> <sgid>308</sgid> <custom flags="8" val1="0"/> <devtype> <gen>4.7.1</gen> <mfg>410.3.3</mfg> <cat>308</cat> </devtype> </node> <node flag="0" nodeDefId="UZW007C"> <address>ZW004_173</address> <name>ZW 004 Tamper Code Alarm 1</name> <family>4</family> <parent type="1">ZW004_1</parent> <type>4.7.1.0</type> <enabled>true</enabled> <deviceClass>0</deviceClass> <wattage>0</wattage> <dcPeriod>0</dcPeriod> <startDelay>0</startDelay> <endDelay>0</endDelay> <pnode>ZW004_1</pnode> <rpnode>ZW004_1</rpnode> <sgid>173</sgid> <custom flags="8" val1="0"/> <devtype> <gen>4.7.1</gen> <mfg>410.3.3</mfg> <cat>173</cat> </devtype> <property id="ST" value="" formatted=" " uom="0"/> </node> The Barrier and alarm nodes shows open and closed on ISY but does not register anything on Polisy. I used the same strip on both devices so I know the strip works.
-
You might want to try restoring ISY from your most recent backup that might help with the busy screen but I did not test it before I uninstalled ISY then installed it and restored my backup.
-
I did the update but mine was stuck in a system busy loop that would not go away. Then through the command line I removed ISY and Installed it, I wanted to start over from there but I can never get ISY to have a portal tab in a fresh install state so I restored my backup and everything is back to where it was. I added 1 Z-Wave device and it is working fine so far. I want to just switch everything over but my the weird error log I'm getting has me concerned and I also have issues with node servers at times. NaN/NaN/NaN NaN:NaN:NaN System -5 Start NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/TMP NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/LOG NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/WEB NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/CODE NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/CONF NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/CONF/D2D NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/CONF NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/CONF/MAIL NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/USER NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/USER/WEB NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/CONF/NET NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/CONF/SEP NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/CONF/OADR NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/CONF/BILLING NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/CONF/DEF NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/DEF NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/DEF/GLOBAL NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/DEF/GLOBAL/i1 NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/DEF/GLOBAL/i1/nls NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/DEF/GLOBAL/i1/editor NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/DEF/GLOBAL/i1/nodedef NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/DEF/f1 NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/DEF/f1/i1 NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/DEF/f1/i1/nls NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/DEF/f1/i1/editor NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/DEF/f1/i1/nodedef NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/DEF/f1/i1/emap NaN/NaN/NaN NaN:NaN:NaN System -110026 ./FILES/CONF/DEF/f10 NaN/NaN/NaN NaN:NaN:NaN System -110022 ./FILES/CONF/UZW0001.BIN NaN/NaN/NaN NaN:NaN:NaN System -110012 ./FILES/CONF/UZW0001.BIN NaN/NaN/NaN NaN:NaN:NaN System -110022 ./FILES/CONF/UZW0001.BIN NaN/NaN/NaN NaN:NaN:NaN System -110012 ./FILES/CONF/UZW0001.BIN NaN/NaN/NaN NaN:NaN:NaN System -110022 ./FILES/CONF/UZW0001.BIN NaN/NaN/NaN NaN:NaN:NaN System -110012 ./FILES/CONF/UZW0001.BIN NaN/NaN/NaN NaN:NaN:NaN System -170001 UDQ: Queue(s) Full, message ignored NaN/NaN/NaN NaN:NaN:NaN System -110022 ./FILES/CONF/INSTENG.OPT NaN/NaN/NaN NaN:NaN:NaN System -110012 ./FILES/CONF/INSTENG.OPT NaN/NaN/NaN NaN:NaN:NaN System -140005 ISY NaN/NaN/NaN NaN:NaN:NaN System -50001 -1 NaN/NaN/NaN NaN:NaN:NaN System -7030 n/a NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetISYConfig xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetISYConfig></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:Authenticate xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><name>tazrules</name><id>Big22fat.</id></u:Authenticate></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetStartupTime xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetStartupTime></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSysConf xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><name>/CONF/INTEGER.VAR</name></u:GetSysConf></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSysConf xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><name>/CONF/STATE.VAR</name></u:GetSysConf></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetVariables xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><type>1</type></u:GetVariables></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetVariables xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><type>2</type></u:GetVariables></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetNodesConfig xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetNodesConfig></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemTime xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemTime></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:SetDebugLevel xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><option>1</option></u:SetDebugLevel></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemOptions xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemOptions></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:Subscribe xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><reportURL>REUSE_SOCKET</reportURL><duration>infinite</duration><send>F</send></u:Subscribe></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:IsSubscribed xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><SID>uuid:26</SID></u:IsSubscribed></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetNodeDef xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><id>0</id></u:GetNodeDef></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemStatus></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:RefreshDeviceStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><sid>uuid:26</sid></u:RefreshDeviceStatus></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemStatus></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetDisclaimerStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetDisclaimerStatus></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:UDIService xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><control>QUERY</control><action></action><flag>65531</flag><node>n005_50029132c0dd</node></u:UDIService></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemStatus></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:UDIService xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><control>QUERY</control><action></action><flag>65531</flag><node>n005_10521ccc6c6e</node></u:UDIService></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemStatus></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemStatus></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemStatus></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:UDIService xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><control>QUERY</control><action></action><flag>65531</flag><node>n005_10521ccc6c6e</node></u:UDIService></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemStatus></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:UDIService xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><control>DISCOVER</control><action></action><flag>65531</flag><node>n005_controller</node></u:UDIService></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemStatus></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:UDIService xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><control>QUERY</control><action></action><flag>65531</flag><node>n005_10521ccc6c6e</node></u:UDIService></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemStatus></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:UDIService xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><control>QUERY</control><action></action><flag>65531</flag><node>n005_50029132c0dd</node></u:UDIService></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemStatus></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:UDIService xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><control>DON</control><action></action><flag>65531</flag><node>n005_50029132c0dd</node></u:UDIService></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -140005 ISY NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemStatus></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetLastError xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetLastError></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:ClearLastError xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:ClearLastError></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:UDIService xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><control>DOF</control><action></action><flag>65531</flag><node>n005_50029132c0dd</node></u:UDIService></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemStatus></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:UDIService xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><control>DON</control><action></action><flag>65531</flag><node>n005_10521ccc6c6e</node></u:UDIService></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemStatus></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:UDIService xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><control>DOF</control><action></action><flag>65531</flag><node>n005_10521ccc6c6e</node></u:UDIService></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemStatus></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:UDIService xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><control>QUERY</control><action></action><flag>65531</flag><node>n005_10521ccc6c6e</node></u:UDIService></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemStatus></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:UDIService xmlns:u="urn:udi-com:service:X_Polisy_Service:1"><control>QUERY</control><action></action><flag>65531</flag><node>n005_50029132c0dd</node></u:UDIService></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemStatus></s:Body></s:Envelope> NaN/NaN/NaN NaN:NaN:NaN System -170001 <s:Envelope><s:Body><u:GetSystemStatus xmlns:u="urn:udi-com:service:X_Polisy_Service:1"></u:GetSystemStatus></s:Body></s:Envelope>
-
ISY994i Z-Wave Alexa Google
tazman replied to WayneUrso's topic in New user? Having trouble? Start here
You can setup a routine in Alexa and control it from a variable in ISY as a motion detector. -
If you right click on your device under the zwave menu there is an option to add a button press node that might give better status.
-
Thanks @Javi I will look into that but probably will not be until the weekend. I will post if I get it working.
-
Well thanks for trying @Javi I guess I will try @kewashi but he does not seem to be around and this is beyond my abilities. It just seems really weird that it works with 994 but not Polisy.
-
@JaviI was unable to install the app on my phone but I could try other phones if it will help. I downloaded a new version of housepanel and started from scratch to make sure it was "clean". I put one of my Insteon devise back to ISY994 and the status works for that device I can control the one on Polisy but does not change status when operated from outside unless I refresh. The housepane log had this in it when starting V2.418 on 11/2/2021 6:50:16 PM Connection failure to ISY socket: Error: Expected a Sec-WebSocket-Protocol header. wshost: ws://192.168.0.30:8080/rest/subscribe header: { 'Sec-WebSocket-Protocol': 'ISYSUB', 'Sec-WebSocket-Version': '13', Origin: 'com.universal-devices.websockets.isy' Then looking at the developer tool it flashed this error so quick I had to video it and take a screen shot from the video