Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Unsolved
Collapse
Discussion Forum to share and further the development of home control and automation, independent of platforms.
  1. Home
  2. Software
  3. Multi-System Reactor
  4. Issues connecting to Ezlo Controller
Gradually turn on lights.
Tom_DT
I have several lights that I would like to turn on very gradually over 15 or 20 seconds. from 0 to .25 in .01 increments. I have tried a few things that came nowhere near working, so here I am.
Multi-System Reactor
Stop the MSR by an external switch on Hubitat.
wmarcolinW
Use case: When performing home maintenance, such as air conditioning, I want all rules involving air conditioning to be disabled. To do this, to day, I have a virtual switch that I placed within all rules involving air conditioning, meaning that if I turn it off, none of them work. Then another situation: the water pump system and garden irrigation, another switch. In short, I had to create several virtual switches in Hubitat to disable rules in MSR. Unfortunately, however, I was unable to cover all scenarios, so I wondered if it would be possible for MSR to support a virtual MSR switch, which, when configured in the reactor settings, would function as a general on/off switch for MSR. If it is configured and turned off, the entire rules and actions in MSR stops working, except for the status change reading process, specifically for this switch, which, when turned on, would restart the MSR. Would it be possible to do something like this? Any recommendations from the experts?
Multi-System Reactor
Error After Upgrade
T
Topic thumbnail image
Multi-System Reactor
Reset attribute value of entity in event handler
R
Topic thumbnail image
Multi-System Reactor
Need help figuring out how to delay a reset on reaction
T
Topic thumbnail image
Multi-System Reactor
Way to search for rules (rule state) in other rules
T
@toggledbits, not sure if this is a feature request or I'm using the search tool wrong. You have a "Search for rule" in the Rules Set tab in MSR. It works nicely to find a rule and bring up said rule, but can it/could it be used for as a "where used?" global search? For instance, I have a fairly large set of rules, divided up into 10 different rulesets. There's easily a hundred individual rules, and many of the rules have Rule State triggers, which of course refer to other rules. Amongst my troubleshooting today, I came across what may have been a duplicate or troubleshooting attempt, but I can't tell if it's actually used as a Rule State in another rule without opening each rule that I suspect it may be a part of. Thanks.
Multi-System Reactor
Links to MSR from HA
Tom_DT
I am using Home Assistant a lot recently. On a dashboard showing the devices, I would like to show a link to the MSR rule that controls the devices. Is there a way to link directly into MSR?
Multi-System Reactor
Set Reaction > Script Action
wmarcolinW
Topic thumbnail image
Multi-System Reactor
Errors after updating to MQTTController build 25139
tunnusT
I'm running MSR build 25139 on Docker, using MQTT controller 24293, and everything working as expected. But if I try to upgrade to MQTTController build 25139, I'm getting the following errors on MSR UI: An Entity Attribute condition in "Lay-Z-Spa auto heating off" (Terrace) failed because the referenced entity "Lay-Z-Spa States" (mqtt>layzspa_states) does not have attribute value_sensor.god Last 11:20:37 An Entity Attribute condition in "Lay-Z-Spa auto heating off" (Terrace) failed because the referenced entity "Lay-Z-Spa States" (mqtt>layzspa_states) does not have attribute temperature_sensor.green Last 11:20:37 An Entity Attribute condition in "Lay-Z-Spa filter pump auto off" (Terrace) failed because the referenced entity "Lay-Z-Spa States" (mqtt>layzspa_states) does not have attribute temperature_sensor.red Last 11:20:37 An Entity Attribute condition in "Lay-Z-Spa filter pump auto run" (Terrace) failed because the referenced entity "Lay-Z-Spa States" (mqtt>layzspa_states) does not have attribute value_sensor.pump Last 11:20:37 An Entity Attribute condition in "Lay-Z-Spa watchdog" (Terrace) failed because the referenced entity "Lay-Z-Spa States" (mqtt>layzspa_states) does not have attribute value_sensor.status Last 11:20:37 My MQTT configuration (local_mqtt_devices.yaml) for the related entity is: layzspa_message: type: ValueSensor capabilities: ["temperature_sensor", "value_sensor", "power_sensor"] primary_attribute: power_sensor.value events: "layzspa/message": "power_sensor.value": json_payload: true if_expr: '! isnull( payload?.PWR )' expr: "float(payload.PWR)" "value_sensor.air": json_payload: true if_expr: '! isnull( payload?.AIR )' expr: "float(payload.AIR)" "value_sensor.pump": json_payload: true if_expr: '! isnull( payload?.FLT )' expr: "float(payload.FLT)" "value_sensor.god": json_payload: true if_expr: '! isnull( payload?.GOD )' expr: "float(payload.GOD)" "value_sensor.lock": json_payload: true if_expr: '! isnull( payload?.LCK )' expr: "float(payload.LCK)" "value_sensor.unit": json_payload: true if_expr: '! isnull( payload?.UNT )' expr: "float(payload.UNT)" "value_sensor.error": json_payload: true if_expr: '! isnull( payload?.ERR )' expr: "float(payload.ERR)" "temperature_sensor.green": json_payload: true if_expr: '! isnull( payload?.GRN )' expr: "float(payload.GRN)" "temperature_sensor.red": json_payload: true if_expr: '! isnull( payload?.RED )' expr: "float(payload.RED)" "temperature_sensor.target": json_payload: true if_expr: '! isnull( payload?.TGT )' expr: "float(payload.TGT)" "temperature_sensor.value": json_payload: true if_expr: '! isnull( payload?.TMP )' expr: "float(payload.TMP)" "temperature_sensor.virtual": json_payload: true if_expr: '! isnull( payload?.VTM )' expr: "round(float(payload.VTM), 1)" "temperature_sensor.ambient": json_payload: true if_expr: '! isnull( payload?.AMB )' expr: "float(payload.AMB)" "layzspa/Status": "value_sensor.status": if_expr: '! isnull( payload )' expr: "payload" "layzspa/button": "value_sensor.button": if_expr: '! isnull( payload )' expr: "payload" and in reactor.yaml I have: "layzspa_states": name: "Lay-Z-Spa States" friendly_name: 'Lay-Z-Spa States' include: layzspa_message I realize my MQTT configuration might be a bit unorthodox, but could there still be something unintentional in the latest MQTTController build? If needed, I can provide detailed logs.
Multi-System Reactor
🎉 My very first MSR controller: OpenSprinkler
therealdbT
Since today is my birthday - and I still pretend to be unconventional - I'm giving away a present to this wonderful community and I'm releasing my first OpenSprinkler controller for MSR. It was real fun to code it - and while it's still WIP, it seems to work OK for me. It's polling-based at the moment, but I'll add support for updates via MQTT very soon (it's already partially coded). Get it at (install is similar to MQTTController and such): https://github.com/dbochicchio/reactor-opensprinkler Feel free to try it. It's beta software, but it's stable. I'll update it weekly until all the tasks from my todo list are empty. Since I've learnt a lot from this controller, I'll explore new controllers soon.
Multi-System Reactor
Advice reqeusted to migrate MSR from Bare Metal to Container
T
Good day all, I'm in the process of trying to shut down my 10 year old Linux home server that served many purposes, but primarily it's what I used for my NAS/Plex Media server. I migrated the NAS aspect of the server in November of last year to a true NAS solution (Ubiquti UNAS Pro), which is rack mount and much more efficient than my old tower, which it's only side benefit was heating my home office during the winter. Unfortunately it also means heating my home office during the summer, which were about to be in full swing. I have two things running on this 10 year old server at this point. MSR and pi-hole. I'm running Plex Media Server on Fedora Workstation in Podman on mini PC, which is much more energy efficient than my old tower. My next step is to migrate MSR. I know there are images of MSR out there, and creating it is well documented. I'm going to be using Podman instead of Docker for various reasons, but they work very similar. What I don't know, is what I need to do to migrate my existing Bare Metal installation over to a container. Has anyone done this? Any advice?
Multi-System Reactor
Reactor (Multi-System/Multi-Hub) Announcements
toggledbitsT
Build 21228 has been released. Docker images available from DockerHub as usual, and bare-metal packages here. Home Assistant up to version 2021.8.6 supported; the online version of the manual will now state the current supported versions; Fix an error in OWMWeatherController that could cause it to stop updating; Unify the approach to entity filtering on all hub interface classes (controllers); this works for device entities only; it may be extended to other entities later; Improve error detail in messages for EzloController during auth phase; Add isRuleSet() and isRuleEnabled() functions to expressions extensions; Implement set action for lock and passage capabilities (makes them more easily scriptable in some cases); Fix a place in the UI where 24-hour time was not being displayed.
Multi-System Reactor
Can´t restart or upgrade/deploy MSR
F
Topic thumbnail image
Multi-System Reactor
[Solved] Limit HA Entity in MSR
wmarcolinW
Topic thumbnail image
Multi-System Reactor
Organizing/ structuring rule sets and rules
R
Hi guys, Just wondering how you guys organize your rule sets and rules. I wish I had an extra layer to have some more granularity, but my feature request was not popular. Maybe there are better ways to organize my rule sets. I use the rule sets now primarily for rooms. So a rule set per room. But maybe grouping by functionality works better. Any examples/ suggestions would be appreciated.
Multi-System Reactor
Moving MSR from a QNAP container to RP 5 - some issues
Tom_DT
Topic thumbnail image
Multi-System Reactor
Widget deletion does not work and landing page (status) is empy
M
Topic thumbnail image
Multi-System Reactor
Need help reducing false positive notifications
T
Topic thumbnail image
Multi-System Reactor
Deleting widgets
tunnusT
Hopefully a trivial question, but how do you delete widgets in a status page? Using build 22266
Multi-System Reactor
MQTT configuration question
tunnusT
I have the following yaml configuration in local_mqtt_devices file x_mqtt_device: set_speed: arguments: speed: type: str topic: "command/%friendly_name%" payload: type: json expr: '{ "fan": parameters.speed }' While this works fine, I'm wondering how this could be changed to "fixed" parameters, as in this case "fan" only accepts "A", "Q" or a numeric value of 1-5?
Multi-System Reactor

Issues connecting to Ezlo Controller

Scheduled Pinned Locked Moved Multi-System Reactor
16 Posts 2 Posters 679 Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • cw-kidC Offline
    cw-kidC Offline
    cw-kid
    wrote on last edited by
    #1

    I've read the thread and the docs, thought I'd setup everything correctly, but MSR doesn't connect to my Ezlo controller.

    The docs don't say what to do if you have already previously enabled anonymous access via their Online API Tool.

    “offlineAnonymousAccess” and “offlineInsecureAccess” are set to true on my controller already.

    In my Reactor.yaml file I decided to try it first with the username and password entries commented out and also the "set_anonymous_access: true" commented out.

    I see these errors in the log file:

    2021-07-16T08:53:56.225Z <app:NOTICE> Starting Structure...
    2021-07-16T08:53:56.235Z <Structure:INFO> Structure#1 starting controller interface vera (VeraController)
    2021-07-16T08:53:56.245Z <Structure:INFO> Structure#1 starting controller interface vera-edge (VeraController)
    2021-07-16T08:53:56.248Z <Structure:INFO> Structure#1 starting controller interface ezlo (EzloController)
    2021-07-16T08:53:56.250Z <Structure:INFO> Structure#1 starting controller interface weather (OWMWeatherController)
    2021-07-16T08:53:56.252Z <Structure:INFO> Structure#1 starting controller interface reactor_system (SystemController)
    2021-07-16T08:53:56.379Z <default:null> Module VeraController v21195
    2021-07-16T08:53:56.402Z <default:null> Module OWMWeatherController v21140
    2021-07-16T08:53:56.407Z <default:null> Module SystemController v21102
    2021-07-16T08:53:56.419Z <VeraController:NOTICE> VeraController#vera starting
    2021-07-16T08:53:56.582Z <VeraController:INFO> VeraController#vera loaded mapping ver 21177 rev 1 format 1 notice 
    2021-07-16T08:53:56.623Z <VeraController:NOTICE> VeraController#vera-edge starting
    2021-07-16T08:53:56.629Z <Controller:CRIT> Controller: failed to load ezlo implementation file:///home/username/reactor/server/lib/EzloController.js: Error: Cannot find module 'uuid'
    Require stack:
    - /home/username/reactor/server/lib/EzloController.js
    2021-07-16T08:53:56.632Z <Controller:CRIT> Error: Cannot find module 'uuid'
    Require stack:
    - /home/username/reactor/server/lib/EzloController.js
    Error: Cannot find module 'uuid'
    Require stack:
    - /home/username/reactor/server/lib/EzloController.js
        at Function.Module._resolveFilename (internal/modules/cjs/loader.js:885:15)
        at Function.Module._load (internal/modules/cjs/loader.js:730:27)
        at Module.require (internal/modules/cjs/loader.js:957:19)
        at require (internal/modules/cjs/helpers.js:88:18)
        at Object.<anonymous> (/home/username/reactor/server/lib/EzloController.js:478:84)
        at Module._compile (internal/modules/cjs/loader.js:1068:30)
        at Object.Module._extensions..js (internal/modules/cjs/loader.js:1097:10)
        at Module.load (internal/modules/cjs/loader.js:933:32)
        at Function.Module._load (internal/modules/cjs/loader.js:774:14)
        at ModuleWrap.<anonymous> (internal/modules/esm/translators.js:199:29)
    2021-07-16T08:53:56.692Z <Controller:NOTICE> Controller SystemController#reactor_system is now online.
    2021-07-16T08:53:56.828Z <Structure:ERR> [Structure:start] failed to start controller ezlo: Error: Cannot find module 'uuid'
    Require stack:
    - /home/username/reactor/server/lib/EzloController.js
    2021-07-16T08:53:56.829Z <Structure:CRIT> Error: Cannot find module 'uuid'
    Require stack:
    - /home/username/reactor/server/lib/EzloController.js
    Error: Cannot find module 'uuid'
    Require stack:
    - /home/username/reactor/server/lib/EzloController.js
        at Function.Module._resolveFilename (internal/modules/cjs/loader.js:885:15)
        at Function.Module._load (internal/modules/cjs/loader.js:730:27)
        at Module.require (internal/modules/cjs/loader.js:957:19)
        at require (internal/modules/cjs/helpers.js:88:18)
        at Object.<anonymous> (/home/username/reactor/server/lib/EzloController.js:478:84)
        at Module._compile (internal/modules/cjs/loader.js:1068:30)
        at Object.Module._extensions..js (internal/modules/cjs/loader.js:1097:10)
        at Module.load (internal/modules/cjs/loader.js:933:32)
        at Function.Module._load (internal/modules/cjs/loader.js:774:14)
        at ModuleWrap.<anonymous> (internal/modules/esm/translators.js:199:29)
    2021-07-16T08:53:56.831Z <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-16T08:53:56.832Z <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)
        at Entity.setAttribute (/home/username/reactor/server/lib/Entity.js:308:19)
        at SystemController.run (/home/username/reactor/server/lib/SystemController.js:224:643)
        at /home/username/reactor/server/lib/SystemController.js:172:35
        at new Promise (<anonymous>)
        at SystemController.start (/home/username/reactor/server/lib/SystemController.js:170:76)
        at /home/username/reactor/server/lib/Controller.js:273:89
    2021-07-16T08:53:56.833Z <Structure:ERR> [Structure:start] failed to start controller reactor_system: TypeError: Can't set NaN on attribute suninfo.astronomical_dawn (reactor_system>sun)
    2021-07-16T08:53:56.833Z <Structure: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)
        at Entity.setAttribute (/home/username/reactor/server/lib/Entity.js:308:19)
        at SystemController.run (/home/username/reactor/server/lib/SystemController.js:224:643)
        at /home/username/reactor/server/lib/SystemController.js:172:35
        at new Promise (<anonymous>)
        at SystemController.start (/home/username/reactor/server/lib/SystemController.js:170:76)
        at /home/username/reactor/server/lib/Controller.js:273:89
    2021-07-16T08:53:56.835Z <app:INFO> Structure running; pausing for controllers' initial ready
    
    1 Reply Last reply
    0
    • cw-kidC Offline
      cw-kidC Offline
      cw-kid
      wrote on last edited by
      #2

      In the Reactor.yaml file I then removed the "#" next to username and password but not for "set_anonymous_access: true" and restarted MSR.

      The Ezlo controller is still not seen in Entities area.

      2021-07-16T09:09:11.206Z <app:NOTICE> Starting Structure...
      2021-07-16T09:09:11.216Z <Structure:INFO> Structure#1 starting controller interface vera (VeraController)
      2021-07-16T09:09:11.226Z <Structure:INFO> Structure#1 starting controller interface vera-edge (VeraController)
      2021-07-16T09:09:11.229Z <Structure:INFO> Structure#1 starting controller interface ezlo (EzloController)
      2021-07-16T09:09:11.231Z <Structure:INFO> Structure#1 starting controller interface weather (OWMWeatherController)
      2021-07-16T09:09:11.233Z <Structure:INFO> Structure#1 starting controller interface reactor_system (SystemController)
      2021-07-16T09:09:11.364Z <default:null> Module VeraController v21195
      2021-07-16T09:09:11.386Z <default:null> Module OWMWeatherController v21140
      2021-07-16T09:09:11.391Z <default:null> Module SystemController v21102
      2021-07-16T09:09:11.403Z <VeraController:NOTICE> VeraController#vera starting
      2021-07-16T09:09:11.574Z <VeraController:INFO> VeraController#vera loaded mapping ver 21177 rev 1 format 1 notice 
      2021-07-16T09:09:11.606Z <VeraController:NOTICE> VeraController#vera-edge starting
      2021-07-16T09:09:11.613Z <Controller:CRIT> Controller: failed to load ezlo implementation file:///home/username/reactor/server/lib/EzloController.js: Error: Cannot find module 'uuid'
      Require stack:
      - /home/username/reactor/server/lib/EzloController.js
      2021-07-16T09:09:11.615Z <Controller:CRIT> Error: Cannot find module 'uuid'
      Require stack:
      - /home/username/reactor/server/lib/EzloController.js
      Error: Cannot find module 'uuid'
      Require stack:
      - /home/username/reactor/server/lib/EzloController.js
          at Function.Module._resolveFilename (internal/modules/cjs/loader.js:885:15)
          at Function.Module._load (internal/modules/cjs/loader.js:730:27)
          at Module.require (internal/modules/cjs/loader.js:957:19)
          at require (internal/modules/cjs/helpers.js:88:18)
          at Object.<anonymous> (/home/username/reactor/server/lib/EzloController.js:478:84)
          at Module._compile (internal/modules/cjs/loader.js:1068:30)
          at Object.Module._extensions..js (internal/modules/cjs/loader.js:1097:10)
          at Module.load (internal/modules/cjs/loader.js:933:32)
          at Function.Module._load (internal/modules/cjs/loader.js:774:14)
          at ModuleWrap.<anonymous> (internal/modules/esm/translators.js:199:29)
      2021-07-16T09:09:11.675Z <Controller:NOTICE> Controller SystemController#reactor_system is now online.
      2021-07-16T09:09:11.804Z <Structure:ERR> [Structure:start] failed to start controller ezlo: Error: Cannot find module 'uuid'
      Require stack:
      - /home/username/reactor/server/lib/EzloController.js
      2021-07-16T09:09:11.804Z <Structure:CRIT> Error: Cannot find module 'uuid'
      Require stack:
      - /home/username/reactor/server/lib/EzloController.js
      Error: Cannot find module 'uuid'
      Require stack:
      - /home/username/reactor/server/lib/EzloController.js
          at Function.Module._resolveFilename (internal/modules/cjs/loader.js:885:15)
          at Function.Module._load (internal/modules/cjs/loader.js:730:27)
          at Module.require (internal/modules/cjs/loader.js:957:19)
          at require (internal/modules/cjs/helpers.js:88:18)
          at Object.<anonymous> (/home/username/reactor/server/lib/EzloController.js:478:84)
          at Module._compile (internal/modules/cjs/loader.js:1068:30)
          at Object.Module._extensions..js (internal/modules/cjs/loader.js:1097:10)
          at Module.load (internal/modules/cjs/loader.js:933:32)
          at Function.Module._load (internal/modules/cjs/loader.js:774:14)
          at ModuleWrap.<anonymous> (internal/modules/esm/translators.js:199:29)
      2021-07-16T09:09:11.806Z <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-16T09:09:11.807Z <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)
          at Entity.setAttribute (/home/username/reactor/server/lib/Entity.js:308:19)
          at SystemController.run (/home/username/reactor/server/lib/SystemController.js:224:643)
          at /home/username/reactor/server/lib/SystemController.js:172:35
          at new Promise (<anonymous>)
          at SystemController.start (/home/username/reactor/server/lib/SystemController.js:170:76)
          at /home/username/reactor/server/lib/Controller.js:273:89
      2021-07-16T09:09:11.808Z <Structure:ERR> [Structure:start] failed to start controller reactor_system: TypeError: Can't set NaN on attribute suninfo.astronomical_dawn (reactor_system>sun)
      2021-07-16T09:09:11.809Z <Structure: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)
          at Entity.setAttribute (/home/username/reactor/server/lib/Entity.js:308:19)
          at SystemController.run (/home/username/reactor/server/lib/SystemController.js:224:643)
          at /home/username/reactor/server/lib/SystemController.js:172:35
          at new Promise (<anonymous>)
          at SystemController.start (/home/username/reactor/server/lib/SystemController.js:170:76)
          at /home/username/reactor/server/lib/Controller.js:273:89
      2021-07-16T09:09:11.811Z <app:INFO> Structure running; pausing for controllers' initial ready
      
      1 Reply Last reply
      0
      • cw-kidC Offline
        cw-kidC Offline
        cw-kid
        wrote on last edited by cw-kid
        #3

        Finally I removed the "#" for the "set_anonymous_access: true" and restarted MSR.

        The Ezlo controller is still not seen in Entities area.

        Also in the docs it says:

        source: "wss://192.168.1.15:17000" # change the IP address

        However all my other Vera controllers have single quotes around their URL.

        source: 'wss://192.168.1.15:17000' # change the IP address

        I tried changing the double quotes to single quotes in my Reactor.yaml file but it made no difference.

        Just thought I would point out the quotes thing.

        1 Reply Last reply
        0
        • cw-kidC Offline
          cw-kidC Offline
          cw-kid
          wrote on last edited by cw-kid
          #4

          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
          
          1 Reply Last reply
          0
          • toggledbitsT Offline
            toggledbitsT Offline
            toggledbits
            wrote on last edited by
            #5

            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 your reactor directory after unpacking.

            Author of Multi-system Reactor and Reactor, DelayLight, Switchboard, and about a dozen other plugins that run on Vera and openLuup.

            1 Reply Last reply
            0
            • cw-kidC Offline
              cw-kidC Offline
              cw-kid
              wrote on last edited by
              #6

              I am not using docker no.

              I downloaded the file from the bug tracker site and ran the commands in SSH to update MSR on my Debian Linux box.

              1 Reply Last reply
              0
              • cw-kidC Offline
                cw-kidC Offline
                cw-kid
                wrote on last edited by
                #7

                OK I see the Ezlo-Plus controller now in entities.

                I have the username and password commented out still in my reactor.yaml file.

                1 Reply Last reply
                0
                • toggledbitsT Offline
                  toggledbitsT Offline
                  toggledbits
                  wrote on last edited by toggledbits
                  #8

                  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.

                  Author of Multi-system Reactor and Reactor, DelayLight, Switchboard, and about a dozen other plugins that run on Vera and openLuup.

                  1 Reply Last reply
                  0
                  • toggledbitsT Offline
                    toggledbitsT Offline
                    toggledbits
                    wrote on last edited by
                    #9

                    Did your reactor_system come back? If not, check your location configuration.

                    Author of Multi-system Reactor and Reactor, DelayLight, Switchboard, and about a dozen other plugins that run on Vera and openLuup.

                    cw-kidC 1 Reply Last reply
                    0
                    • toggledbitsT toggledbits

                      Did your reactor_system come back? If not, check your location configuration.

                      cw-kidC Offline
                      cw-kidC Offline
                      cw-kid
                      wrote on last edited by
                      #10

                      @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.

                      1 Reply Last reply
                      0
                      • cw-kidC Offline
                        cw-kidC Offline
                        cw-kid
                        wrote on last edited by
                        #11

                        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

                        1 Reply Last reply
                        0
                        • toggledbitsT Offline
                          toggledbitsT Offline
                          toggledbits
                          wrote on last edited by
                          #12

                          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
                          

                          Author of Multi-system Reactor and Reactor, DelayLight, Switchboard, and about a dozen other plugins that run on Vera and openLuup.

                          cw-kidC 1 Reply Last reply
                          0
                          • toggledbitsT toggledbits

                            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
                            
                            cw-kidC Offline
                            cw-kidC Offline
                            cw-kid
                            wrote on last edited by cw-kid
                            #13

                            @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.

                            1 Reply Last reply
                            0
                            • cw-kidC Offline
                              cw-kidC Offline
                              cw-kid
                              wrote on last edited by
                              #14

                              I used R,G,B in my reactions. I haven't tried using HEX colour codes yet.

                              1 Reply Last reply
                              0
                              • toggledbitsT Offline
                                toggledbitsT Offline
                                toggledbits
                                wrote on last edited by toggledbits
                                #15

                                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.

                                Author of Multi-system Reactor and Reactor, DelayLight, Switchboard, and about a dozen other plugins that run on Vera and openLuup.

                                cw-kidC 1 Reply Last reply
                                0
                                • toggledbitsT toggledbits

                                  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.

                                  cw-kidC Offline
                                  cw-kidC Offline
                                  cw-kid
                                  wrote on last edited by cw-kid
                                  #16

                                  @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.

                                  1 Reply Last reply
                                  0
                                  • toggledbitsT toggledbits locked this topic on
                                  Reply
                                  • Reply as topic
                                  Log in to reply
                                  • Oldest to Newest
                                  • Newest to Oldest
                                  • Most Votes


                                  Recent Topics

                                  • Gradually turn on lights.
                                    G
                                    gwp1
                                    0
                                    4
                                    132

                                  • Stop the MSR by an external switch on Hubitat.
                                    wmarcolinW
                                    wmarcolin
                                    0
                                    1
                                    30

                                  • Error After Upgrade
                                    G
                                    gwp1
                                    0
                                    4
                                    103

                                  • Reset attribute value of entity in event handler
                                    R
                                    RHCPNG
                                    0
                                    5
                                    201

                                  • Need help figuring out how to delay a reset on reaction
                                    G
                                    gwp1
                                    0
                                    22
                                    925

                                  • Way to search for rules (rule state) in other rules
                                    T
                                    tamorgen
                                    0
                                    3
                                    99

                                  • Links to MSR from HA
                                    Tom_DT
                                    Tom_D
                                    0
                                    1
                                    90

                                  • Set Reaction > Script Action
                                    wmarcolinW
                                    wmarcolin
                                    0
                                    11
                                    433

                                  • Wiring Samotech SM308-S into light fitting
                                    akbooerA
                                    akbooer
                                    0
                                    2
                                    146

                                  • Errors after updating to MQTTController build 25139
                                    toggledbitsT
                                    toggledbits
                                    0
                                    6
                                    236

                                  • 🎉 My very first MSR controller: OpenSprinkler
                                    therealdbT
                                    therealdb
                                    5
                                    13
                                    917

                                  • Advice reqeusted to migrate MSR from Bare Metal to Container
                                    T
                                    tamorgen
                                    0
                                    5
                                    260
                                  Powered by NodeBB | Contributors
                                  Hosted freely by 10RUPTiV - Solutions Technologiques | Contact us
                                  • Login

                                  • Don't have an account? Register

                                  • Login or register to search.
                                  • First post
                                    Last post
                                  0
                                  • Categories
                                  • Recent
                                  • Tags
                                  • Popular
                                  • Unsolved