Issues connecting to Ezlo Controller
-
Should I also see Reactor System in the Entities area?
failed to start controller reactor_system: TypeError: Can't set NaN on attribute suninfo.astronomical_dawn
Looking in my log file now I've just seen this:
<Controller:NOTICE> Controller SystemController#reactor_system is now online.
And these error:
<Controller:CRIT> Controller: failed to start controller reactor_system (file:///home/username/reactor/server/lib/SystemController.js): TypeError: Can't set NaN on attribute suninfo.astronomical_dawn (reactor_system>sun) 2021-07-16T13:17:31.337Z <Controller:CRIT> TypeError: Can't set NaN on attribute suninfo.astronomical_dawn (reactor_system>sun) TypeError: Can't set NaN on attribute suninfo.astronomical_dawn (reactor_system>sun)
And several errors like these:
2021-07-16T13:17:35.032Z <default:ERR> [Entity:setPrimaryAttribute] Attempt to set primary to power_switch.state invalid, not in { "x_vera_device": { "device_number": 434, "device_type": "urn:schemas-upnp-org:device:RGBController:1", "parent_device": 0, "failed": --null--, "configured": --null--, "mapped_class": "rgbcontroller_plugin", "mapped_by": "*;device_type=urn:schemas-upnp-org:device:RGBController:1" }, "x_vera_svc_upnp_org_RGBController1": { }, "x_vera_svc_upnp_org_SwitchPower1": { }, "x_vera_svc_micasaverde_com_HaDevice1": { }, "x_vera_rgbcontroller_plugin": { "device_type": "FGRGBWM-441", "configured": true, "color": "#0000000000", "message": "" } } 2021-07-16T13:17:35.034Z <VeraController:ERR> VeraController#vera exception/error while updating VeraController#vera 2021-07-16T13:17:35.034Z <VeraController:CRIT> Error: Entity#vera>device_434:setPrimaryAttribute() can't set power_switch.state, not defined for entity Error: Entity#vera>device_434:setPrimaryAttribute() can't set power_switch.state, not defined for entity
-
Are you using a docker container or the archive download? If archive, I just realized I forgot to mention: do
npm update --no-save
in yourreactor
directory after unpacking. -
If you already have anonymous access enabled, that's fine. The instructions describe the process to get to that point, and those work whether you already have it enabled or not (i.e. cloud login and token access always work, so it's the safest path to start with). You're a step ahead of the game so you can skip that. Username and password not needed. You can also remove/comment out the
set_anonymous_access
line. -
Did your reactor_system come back? If not, check your location configuration.
-
Did your reactor_system come back? If not, check your location configuration.
@toggledbits said in Issues connecting to Ezlo Controller:
Did your reactor_system come back?
No its still missing from Entities.
I have never changed my location information in the reactor.yaml file since I very first started using MSR.
-
I've just created my first two Global Reactions with the Ezlo controller to change the colours on an RGB bulb, its working OK.
Its also imported all the "virtual devices" from the Ezlo Plus hubs (Rene's Vera to Ezlo bridge plugin) that was kind of expected.
I have several real Z-Wave devices paired to the Ezlo Plus hub now, so I will test out MSR with those.
Thanks
-
Getting RGB bulbs working is a great example of blind luck, since I don't have any of those connected to my eZLO (and none that I do have are supported currently--all require plugins). So that's a bit of good news!
For your reactor_system, please fetch this URL and paste output here:
http://your-msr-host-ip:8111/diag/sun
-
Getting RGB bulbs working is a great example of blind luck, since I don't have any of those connected to my eZLO (and none that I do have are supported currently--all require plugins). So that's a bit of good news!
For your reactor_system, please fetch this URL and paste output here:
http://your-msr-host-ip:8111/diag/sun
@toggledbits said in Issues connecting to Ezlo Controller:
Getting RGB bulbs working is a great example of blind luck, since I don't have any of those connected to my eZLO (and none that I do have are supported currently--all require plugins). So that's a bit of good news!
I see you saw (liked) my post on the Vera forum. I edited it however and said it can be laggy when pressing the buttons in the Home Remote app to change to the different colours of the bulb.
If I over do it and press them quickly to change to different colours, the bulb can stop responding for a period of time.
This is most likely the Ezlo HTTP web socket API falling behind with what commands MSR is sending to it.
-
I'm guessing there's just a lot of plumbing in that hookup... you press a button in Home Remote, that makes the request to MSR (over WiFi directly, or is there a cloud component to that app?), then MSR has to make the request to the eZLO hub, then the eZLO hub has to send the request to the device, the device has to respond, and the finish traverse its way all the way backwards. The
reactor.log
file will have enough data for you to figure out (a) when the request to start the reaction was received (search for "Enqueueing" with your reaction name/id following); (b) when the reaction started the request to the hub (search for "sending payload for", requires debug enabled per post instructions); and (c) when the hub action completed (i.e. eZLO hub responded with success/done, search for "action rgbcolor.set_rgb completed", assuming that's the action you are using; change as needed); and (d) when the reaction ended (search for "all actions completed"). Each of those will have a time stamp with milliseconds, so you can compute the pace of each phase and the time overall of MSR's contribution to the timing. -
I'm guessing there's just a lot of plumbing in that hookup... you press a button in Home Remote, that makes the request to MSR (over WiFi directly, or is there a cloud component to that app?), then MSR has to make the request to the eZLO hub, then the eZLO hub has to send the request to the device, the device has to respond, and the finish traverse its way all the way backwards. The
reactor.log
file will have enough data for you to figure out (a) when the request to start the reaction was received (search for "Enqueueing" with your reaction name/id following); (b) when the reaction started the request to the hub (search for "sending payload for", requires debug enabled per post instructions); and (c) when the hub action completed (i.e. eZLO hub responded with success/done, search for "action rgbcolor.set_rgb completed", assuming that's the action you are using; change as needed); and (d) when the reaction ended (search for "all actions completed"). Each of those will have a time stamp with milliseconds, so you can compute the pace of each phase and the time overall of MSR's contribution to the timing.@toggledbits said in Issues connecting to Ezlo Controller:
you press a button in Home Remote, that makes the request to MSR (over WiFi directly, or is there a cloud component to that app?
Its direct on the WLAN from the Home Remote app to the MSR HTTP API.
I have this exact same setup with my Vera hub for my other colour lights paired to the Vera Plus.
I haven't noticed those being laggy when pressing the buttons on the Home Remote app page etc.
But to be fair I don't normally press all the buttons quickly to change colours in that manner. I will try it against a Vera controller as well to see.
-
T toggledbits locked this topic on