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. [SOLVED] New iblind and zwaveJScontroller/MSR not communicating
Self test
CatmanV2C
Having been messing around with some stuff I worked a way to self trigger some tests that I wanted to do on the HA <> MSR integration This got me wondering if there's an entity that changes state / is exposed when a configured controller goes off line? I can't see one but thought it might be hidden or something? Cheers C
Multi-System Reactor
How to upgrade from an old version of MSR?
cw-kidC
Hello I haven't updated my installation of MSR in a very long time. Its a bare metal Linux install currently on version 24366-3de60836 I see the latest version is now latest-26011-c621bbc7 I assume I cannot just jump from a very old version to the latest version? Or can I? Thanks
Multi-System Reactor
Access control - allowing anonymous user to dashboard
tunnusT
Using build 25328 and having the following users.yaml configuration: users: # This section defines your valid users. admin: ******* groups: # This section defines your user groups. Optionally, it defines application # and API access restrictions (ACLs) for the group. Users may belong to # more than one group. Again, no required or special groups here. admin_group: users: - admin applications: true # special form allows access to ALL applications guests: users: "*" applications: - dashboard api_acls: # This ACL allows users in the "admin" group to access the API - url: "/api" group: admin_group allow: true log: true # This ACL allows anyone/thing to access the /api/v1/alive API endpoint - url: "/api/v1/alive" allow: true session: timeout: 7200 # (seconds) rolling: true # activity extends timeout when true # If log_acls is true, the selected ACL for every API access is logged. log_acls: true # If debug_acls is true, even more information about ACL selection is logged. debug_acls: true My goal is to allow anonymous user to dashboard, but MSR is still asking for a password when trying to access that. Nothing in the logs related to dashboard access. Probably an error in the configuration, but help needed to find that. Tried to put url: "/dashboard" under api_acls, but that was a long shot and didn't work.
Multi-System Reactor
VEC Virtual Switch Auto Off
S
I use Virtual Entity Controller virtual switches which I turn on via webhooks from other applications. Once a switch triggers and turns on, I can then activate associated rules. I would like each virtual switch to automatically turn off after a configurable time (e.g., 5 seconds, 10 seconds). Is there a better way to achieve this auto-off behavior instead of creating a separate rule for each switch that uses the 'Condition must be sustained for' option to turn it off? With a large number of these switches (and the associated turn-off rules), I'm checking to see if there is a simpler approach.If not, could this be a feature request to add an auto-off timer directly to the virtual switches. Thanks Reactor (Multi-hub) latest-26011-c621bbc7 VirtualEntityController v25356 Synology Docker
Multi-System Reactor
Upcoming Storage Change -- Got Back-ups?
toggledbitsT
TL;DR: Format of data in storage directory will soon change. Make sure you are backing up the contents of that directory in its entirety, and you preserve your backups for an extended period, particularly the backup you take right before upgrading to the build containing this change (date of that is still to be determined, but soon). The old data format will remain readable (so you'll be able to read your pre-change backups) for the foreseeable future. In support of a number of other changes in the works, I have found it necessary to change the storage format for Reactor objects in storage at the physical level. Until now, plain, standard JSON has been used to store the data (everything under the storage directory). This has served well, but has a few limitations, including no real support for native JavaScript objects like Date, Map, Set, and others. It also is unable to store data that contains "loops" — objects that reference themselves in some way. I'm not sure exactly when, but in the not-too-distant future I will publish a build using the new data format. It will automatically convert existing JSON data to the new format. For the moment, it will save data in both the new format and the old JSON format, preferring the former when loading data from storage. I have been running my own home with this new format for several months, and have no issues with data loss or corruption. A few other things to know: If you are not already backing up your storage directory, you should be. At a minimum, back this directory up every time you make big changes to your Rules, Reactions, etc. Your existing JSON-format backups will continue to be readable for the long-term (years). The code that loads data from these files looks for the new file format first (which will have a .dval suffix), and if not found, will happily read (and convert) a same-basenamed .json file (i.e. it looks for ruleid.dval first, and if it doesn't find it, it tries to load ruleid.json). I'll publish detailed instructions for restoring from old backups when the build is posted (it's easy). The new .dval files are not directly human-readable or editable as easily as the old .json files. A new utility will be provided in the tools directory to convert .dval data to .json format, which you can then read or edit if you find that necessary. However, that may not work for all future data, as my intent is to make more native JavaScript objects directly storable, and many of those objects cannot be stored in JSON. You may need to modify your backup tools/scripts to pick up the new files: if you explicitly name .json files (rather than just specifying the entire storage directory) in your backup configuration, you will need to add .dval files to get a complete, accurate backup. I don't think this will be an issue for any of you; I imagine that you're all just backing up the entire contents of storage regardless of format/name, that is the safest (and IMO most correct) way to go (if that's not what you're doing, consider changing your approach). The current code stores the data in both the .dval form and the .json form to hedge against any real-world problems I don't encounter in my own use. Some future build will drop this redundancy (i.e. save only to .dval form). However, the read code for the .json form will remain in any case. This applies only to persistent storage that Reactor creates and controls under the storage tree. All other JSON data files (e.g. device data for Controllers) are unaffected by this change and will remain in that form. YAML files are also unaffected by this change. This thread is open for any questions or concerns.
Multi-System Reactor
Oddness in Copy/Move of Reactions
G
Topic thumbnail image
Multi-System Reactor
[Solved] function isRuleEnabled() issue
CrilleC
Topic thumbnail image
Multi-System Reactor
[Reactor] Problem with Global Reactions and groups
therealdbT
Topic thumbnail image
Multi-System Reactor
Possible feature request 2?
CatmanV2C
Just another thought. Adding devices from my Home Assistant / Zigbee2MQTT integration. Works perfectly but they always add as their IEEE address. Some of these devices have up to 10 entities associated, and the moment they are renamed to something sensible, each of those entities 'ceases to exist' in MSR. I like things tidy, and deleting each defunct entity needs 3 clicks. Any chance of a 'bulk delete' option? No biggy as I've pretty much finished my Z-wave migration and I don't expect to be adding more than 2 new Zigbee devices Cheers C
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
Copying a global reaction
tunnusT
With build 25328, if you copy a global reaction, a new reaction does not appear in the UI unless you do a refresh. I recall this used to work without needing this page refresh? Anyway, only a minor nuisance.
Multi-System Reactor
[Reactor] Bug when sending MQTT boolean payloads
therealdbT
Topic thumbnail image
Multi-System Reactor
Difficulty defining repeating annual period
R
I have tried numerous ways to define a recurring annual period, for example from December 15 to January 15. No matter which method I try - after and before, between, after and/not after, Reactor reports "waiting for invalid date, invalid date. Some constructs also seem to cause Reactor to hang, timeout and restart. For example "before January 15 is evaluated as true, but reports "waiting for invalid date, invalid date". Does anyone have a tried and true method to define a recurring annual period? I think the "between" that I used successfully in the past may have broken with one of the updates.
Multi-System Reactor
Need help with sequence
T
Good evening all, For about the past week or so, I've been having problems with a specific rule in my home automation that controls when my home goes from an Away mode to Home mode. One of the conditions it checked for was my alarm panel, when it changed from Armed Away to Disarmed. There seems to have been a firmware update on the panel that added an intermittent step of "pending", and I can't say for certain it happens 100% of the time. Is there a way to write a condition that so it changes from one condition, to the next, and then another condition? As in, Home alarm changes from armed_away to pending to disarmed. Thanks.
Multi-System Reactor
Possible feature request?
CatmanV2C
No idea how easy this would be. During my migration away from Z-wave I've been replacing the Z-wave devices with Sonoff which has broken some of my automations. Any chance of a 'Test Reaction' function to call out which ones are broken because an entity no longer exists? Without actually running the reaction? Or does this exist already and I'm just not aware of how to do it? Obviously I can see entities that are no longer available, but not quite what I'm looking for. I guess it's something of an edge case so no huge issue. TIA! C
Multi-System Reactor
Logic Assistance: Exterior Lights on when Illuminance Below Threshold
PablaP
Topic thumbnail image
Multi-System Reactor
Time series documentation
tunnusT
Is the current manual (incl. examples) up to date with how retention value is handled in time series configuration? Referring to this post
Multi-System Reactor
MQTT templates for ZIgbee scene controller, or a better way?
CatmanV2C
Topic thumbnail image
Multi-System Reactor
Reset a delay
CatmanV2C
I'm sure this has been asked, and answered, but damned if I can figure it out Use case: I have a rear garden with lights. A door from the kitchen into the garden and a door from the garage. Currently if I open the kitchen door the lights come on (yay) and a 3 minute delay starts. After 3 minutes, no matter what else happens, the lights go off (Boo! But also yay!) What I would like is for the 3 minute delay until the lights go off to start from the latest door open event. That is, if I'm going from kitchen to garage, and back again, the lights stay on until there's three minutes of no activity. I've tried 'hacking' with a virtual switch, but can't seem to stop the delay. Any pointers? TIA C
Multi-System Reactor
Reactor Loading Screen Safari
S
Topic thumbnail image
Multi-System Reactor

[SOLVED] New iblind and zwaveJScontroller/MSR not communicating

Scheduled Pinned Locked Moved Multi-System Reactor
solved
44 Posts 3 Posters 13.5k Views 3 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.
  • toggledbitsT Offline
    toggledbitsT Offline
    toggledbits
    wrote on last edited by
    #7

    Looks like your Hass devices aren't actually faring much better... nulls there too for some values, and that's a straight pass from Hass itself, not likely something MSR is doing (or not doing).

    Something off about this device. I'm going to PM you instructions to upload a data file from your system.

    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
    • G gwp1

      @toggledbits Answering in reverse order: yes on restart of MSR (multiple times). Also reloaded the HA ZWaveJS plugin as well as restarted HA as a whole.

      The the first ask:
      647.yaml

      manufacturer_id: 647
      manufacturer_name: "HAB Home Intelligence, LLC"
      version: 23093
      revision: 1
      format: 1
      

      and I do not have a ext/ZWaveJSController/zwave_devices.yaml but do have a ext/ZWaveJSController/zwavejs_devices.yaml and it shows

      version: 23052
      revision: 1
      format: 1
      

      Looking in my files I see the latest version was 23093 so I'm grabbing 23094 from your repo and installing now.

      G Offline
      G Offline
      gwp1
      wrote on last edited by
      #8

      @toggledbits Ok, release deployed.

      ext/ZWaveJSController/zwavejs_devices.yaml now shows

      version: 23194
      revision: 1
      format: 1
      

      647.yaml still shows

      manufacturer_id: 647
      manufacturer_name: "HAB Home Intelligence, LLC"
      version: 23093
      revision: 1
      format: 1
      

      Node attributes:

      battery_power.since=1694192043559
      cover.state=null
      position.value=null
      x_debug.dt={"entity_class":"Cover","match":"deviceClass.generic.key=17;deviceClass.specific.key=7","capabilities":["cover","toggle","position"],"primary_attribute":"cover.state","description":"Window Blind Controller","model":"iblinds V3","default_name":"Window Blind Controller","values":[{"valueId":"38:currentValue:","capabilities":{"cover":{"attributes":{"state":{"expr":"!(value == 0 || value >= 99)"}},"actions":{"open":{"valueId":"38:targetValue:","value":50},"close":{"valueId":"38:targetValue:","value":99},"stop":false}},"position":{"attributes":{"value":{"expr":"round( value / 99, 2 )"}},"actions":{"set":{"valueId":"38:targetValue","value":{"expr":"max( 0, min( 99, round( 100 * ( parameters.value ?# 0 ), 0 ) ) )"}},"increase":{"valueId":"38:targetValue","value":{"expr":"max( 0, min( 99, round( 100 * ( ( entity.attributes.position?.value ?# 0 ) + ( parameters.amount ?# 0.10 ) ), 0 ) ) )"}},"decrease":{"valueId":"38:targetValue","value":{"expr":"max( 0, min( 99, round( 100 * ( ( entity.attributes.position?.value ?# 0 ) - ( parameters.amount ?# 0.10 ) ), 0 ) ) )"}},"relative":{"valueId":"38:targetValue","value":{"expr":"max( 0, min( 99, round( 100 * ( ( entity.attributes.position?.value ?# 0 ) + ( parameters.amount ?# 0.10 ) ), 0 ) ) )"}}}},"toggle":{"actions":{"toggle":{"valueId":"38:targetValue:","value":{"expr":"entity.attributes.cover.state ? 99 : 50"}}}}}}],"manufacturerId":647,"productType":4,"productId":113}
      x_zwave_values.Battery_isLow=false
      x_zwave_values.Battery_level=100
      x_zwave_values.Configuration_Close_Interval=15
      x_zwave_values.Configuration_Default_ON_Value=50
      x_zwave_values.Configuration_MC=1
      x_zwave_values.Configuration_Maximum_Tilt_Level=99
      x_zwave_values.Configuration_Minimum_Tilt_Level=0
      x_zwave_values.Configuration_Movement_Duration=0
      x_zwave_values.Configuration_Override_Response_to_ON_Command=null
      x_zwave_values.Configuration_Remote_Calibration=1
      x_zwave_values.Configuration_Reset_Button=0
      x_zwave_values.Configuration_Reverse_Direction=1
      x_zwave_values.Configuration_Send_Reports=0
      x_zwave_values.Indicator_Node_Identify_3=0
      x_zwave_values.Indicator_Node_Identify_4=0
      x_zwave_values.Indicator_Node_Identify_5=0
      x_zwave_values.Indicator_identify=true
      x_zwave_values.Indicator_timeout=null
      x_zwave_values.Indicator_value=null
      x_zwave_values.Manufacturer_Specific_manufacturerId=647
      x_zwave_values.Manufacturer_Specific_productId=114
      x_zwave_values.Manufacturer_Specific_productType=4
      x_zwave_values.Version_applicationBuildNumber=43707
      x_zwave_values.Version_applicationFrameworkAPIVersion="3.12.1"
      x_zwave_values.Version_applicationFrameworkBuildNumber=35
      x_zwave_values.Version_applicationVersion="3.12.1"
      x_zwave_values.Version_firmwareVersions=["3.12"]
      x_zwave_values.Version_hardwareVersion=2
      x_zwave_values.Version_hostInterfaceBuildNumber=0
      x_zwave_values.Version_hostInterfaceVersion="unused"
      x_zwave_values.Version_libraryType=3
      x_zwave_values.Version_protocolVersion="7.12"
      x_zwave_values.Version_sdkVersion="7.12.2"
      x_zwave_values.Version_zWaveProtocolBuildNumber=35
      x_zwave_values.Version_zWaveProtocolVersion="7.12.2"
      x_zwave_values.Window_Covering_currentValue_23=0
      x_zwave_values.Window_Covering_duration_23={"value":0,"unit":"seconds"}
      x_zwave_values.Window_Covering_levelChangeDown_23=false
      x_zwave_values.Window_Covering_levelChangeUp_23=true
      x_zwave_values.Window_Covering_targetValue_23=0
      zwave_device.capabilities=[106,112,114,128,134,135]
      zwave_device.endpoint=0
      zwave_device.failed=false
      zwave_device.generic_class="Multilevel Switch"
      zwave_device.impl_sig="23194:1:23093:1"
      zwave_device.is_beaming=false
      zwave_device.is_listening=false
      zwave_device.is_routing=true
      zwave_device.is_secure=false
      zwave_device.manufacturer_info=[647,4,114]
      zwave_device.max_data_rate=null
      zwave_device.node_id=20
      zwave_device.specific_class="Motor Control Class C"
      zwave_device.status=4
      zwave_device.status_text="alive"
      zwave_device.version_info=[null,"3.12.1"]
      

      (Did a manual restart via Tools>Restart after the deploy as well.

      *Hubitat C-7 2.4.3.177
      *Proxmox VE v8, Beelink MiniPC 12GBs, SSD

      *HAOS
      Core 2026.1.1
      w/ HA Connect ZWA-2
      FW: v1.1
      SDK: v7.23.1

      *Prod MSR in docker/portainer
      MSR: latest-26011-c621bbc7
      MQTTController: 25139
      ZWave Controller: 25139

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

        Yeah, this device is off. It's reporting Multilevel Switch for its generic class, and Motor Control Class C as the more specific, and usually this device class reports command class 38, Multilevel Switch. That's how your other iBlinds units that identify the same way (same 647 manufacturer ID, product type 4, product ID 114) work. But this particular unit does not appear to be advertising command class 38 Multilevel Switch, and is instead reporting command class 106 Window Covering, which is relatively new.

        Once you upload the data I PM'd you about, I'll be curious to see how the reporting firmware compares. But this new unit is definitely working differently from everything else you have, and it doesn't look like HA actually likes it any better -- I think that's why it's reporting the slats angle in HA as null; I bet it shows the same in their dashboard.

        I'll know more/confirm once I see you data. Probably won't get to that until Sunday or Monday at this point, though.

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

        G 1 Reply Last reply
        0
        • toggledbitsT toggledbits

          Yeah, this device is off. It's reporting Multilevel Switch for its generic class, and Motor Control Class C as the more specific, and usually this device class reports command class 38, Multilevel Switch. That's how your other iBlinds units that identify the same way (same 647 manufacturer ID, product type 4, product ID 114) work. But this particular unit does not appear to be advertising command class 38 Multilevel Switch, and is instead reporting command class 106 Window Covering, which is relatively new.

          Once you upload the data I PM'd you about, I'll be curious to see how the reporting firmware compares. But this new unit is definitely working differently from everything else you have, and it doesn't look like HA actually likes it any better -- I think that's why it's reporting the slats angle in HA as null; I bet it shows the same in their dashboard.

          I'll know more/confirm once I see you data. Probably won't get to that until Sunday or Monday at this point, though.

          G Offline
          G Offline
          gwp1
          wrote on last edited by
          #10

          @toggledbits file has been uploaded. This blind is in a guest room that's not in use currently - no rush.

          Do you think excluding/including with HA/ZWjs would have any effect? Could something have gone sideways during pairing that a complete redo might clear?

          *Hubitat C-7 2.4.3.177
          *Proxmox VE v8, Beelink MiniPC 12GBs, SSD

          *HAOS
          Core 2026.1.1
          w/ HA Connect ZWA-2
          FW: v1.1
          SDK: v7.23.1

          *Prod MSR in docker/portainer
          MSR: latest-26011-c621bbc7
          MQTTController: 25139
          ZWave Controller: 25139

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

            ZWaveJSController version 23254 has been released. It should handle your oddball iBlinds unit. I'd love to know (not from you, from the manufacturer) what triggers the difference between reporting status in command class 38 versus command class 106 -- only this most recent unit of yours reports/controls via 106; all of the others use 38. And there's no difference in reported model or firmware version. No obvious configuration parameter that might trigger such a difference (e.g. some others, like some Aeotec devices, can change the reporting CC based on a config parameter). Just goes to show you that despite a fairly strict standard and specification, manufacturers can continue to make subtle choices that create headaches.

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

            G 2 Replies Last reply
            0
            • toggledbitsT toggledbits

              ZWaveJSController version 23254 has been released. It should handle your oddball iBlinds unit. I'd love to know (not from you, from the manufacturer) what triggers the difference between reporting status in command class 38 versus command class 106 -- only this most recent unit of yours reports/controls via 106; all of the others use 38. And there's no difference in reported model or firmware version. No obvious configuration parameter that might trigger such a difference (e.g. some others, like some Aeotec devices, can change the reporting CC based on a config parameter). Just goes to show you that despite a fairly strict standard and specification, manufacturers can continue to make subtle choices that create headaches.

              G Offline
              G Offline
              gwp1
              wrote on last edited by
              #12

              @toggledbits this was deployed and tests as working. Really appreciate it - I bought two new units and have held off installing the second until it was determined not to be a firmware problem (broken vs them just randomly changing something).

              Thank you!

              *Hubitat C-7 2.4.3.177
              *Proxmox VE v8, Beelink MiniPC 12GBs, SSD

              *HAOS
              Core 2026.1.1
              w/ HA Connect ZWA-2
              FW: v1.1
              SDK: v7.23.1

              *Prod MSR in docker/portainer
              MSR: latest-26011-c621bbc7
              MQTTController: 25139
              ZWave Controller: 25139

              1 Reply Last reply
              0
              • toggledbitsT toggledbits

                ZWaveJSController version 23254 has been released. It should handle your oddball iBlinds unit. I'd love to know (not from you, from the manufacturer) what triggers the difference between reporting status in command class 38 versus command class 106 -- only this most recent unit of yours reports/controls via 106; all of the others use 38. And there's no difference in reported model or firmware version. No obvious configuration parameter that might trigger such a difference (e.g. some others, like some Aeotec devices, can change the reporting CC based on a config parameter). Just goes to show you that despite a fairly strict standard and specification, manufacturers can continue to make subtle choices that create headaches.

                G Offline
                G Offline
                gwp1
                wrote on last edited by gwp1
                #13

                @toggledbits I contacted iblinds Support. This was their response:

                *We've had similar reports. I believe it is related to a recent update with Home Assistant supporting the Z-Wave Window Covering Command Class now. So when you add your new devices they are seen with the new command class. I would imagine if you excluded and included one of the older motors they would now be Window Covering devices as opposed to multi-level switches.

                We initially worked with the ZWaveJS developer when they added the Window Covering CC Support. But unfortunately, our HA in our lab is no longer working so we have been unable to test locally.

                We have been waiting to get a replacement RPi so hopefully we can do some testing on our end soon.

                I hope this helps.

                Best Regards,
                Eric B.
                The iblinds Team*

                Further, I just discovered if I do a reinterview on an existing blind via ZWaveJS in HA it switches to this new Window Covering mode.

                *Hubitat C-7 2.4.3.177
                *Proxmox VE v8, Beelink MiniPC 12GBs, SSD

                *HAOS
                Core 2026.1.1
                w/ HA Connect ZWA-2
                FW: v1.1
                SDK: v7.23.1

                *Prod MSR in docker/portainer
                MSR: latest-26011-c621bbc7
                MQTTController: 25139
                ZWave Controller: 25139

                T 1 Reply Last reply
                0
                • G gwp1

                  @toggledbits I contacted iblinds Support. This was their response:

                  *We've had similar reports. I believe it is related to a recent update with Home Assistant supporting the Z-Wave Window Covering Command Class now. So when you add your new devices they are seen with the new command class. I would imagine if you excluded and included one of the older motors they would now be Window Covering devices as opposed to multi-level switches.

                  We initially worked with the ZWaveJS developer when they added the Window Covering CC Support. But unfortunately, our HA in our lab is no longer working so we have been unable to test locally.

                  We have been waiting to get a replacement RPi so hopefully we can do some testing on our end soon.

                  I hope this helps.

                  Best Regards,
                  Eric B.
                  The iblinds Team*

                  Further, I just discovered if I do a reinterview on an existing blind via ZWaveJS in HA it switches to this new Window Covering mode.

                  T Offline
                  T Offline
                  tamorgen
                  wrote on last edited by
                  #14

                  @gwp1 said in [SOLVED] New iblind and zwaveJScontroller/MSR not communicating:

                  Further, I just discovered if I do a reinterview on an existing blind via ZWaveJS in HA it switches to this new Window Covering mode.

                  For what it's worth, I have both v2 and v3.1 iBlinds in my home. Reinterviewing only changes the type from multilevel switches to window covering on v3.1 blinds. Version 2 blinds remain multilevel switches after reinterviewing.

                  The Window Covering class is supposedly better. The MLS class is designed for rolling blinds, so on/off will have the bllinds all the way open, or all the way off. With horizonal blinds, the 0/100 values are just 180 degree opposites of a closed blind. With Window Covering class, I believe there are values to tell the Z-Wave system what type of blind it is, and specify what is open versus closed. I dealt with iBlinds support maybe 4 or 5 months ago, and at the time, no Z-Wave system supported Window Covering. Zwave JS implemented the change shortly thereafter.

                  G 2 Replies Last reply
                  1
                  • T tamorgen

                    @gwp1 said in [SOLVED] New iblind and zwaveJScontroller/MSR not communicating:

                    Further, I just discovered if I do a reinterview on an existing blind via ZWaveJS in HA it switches to this new Window Covering mode.

                    For what it's worth, I have both v2 and v3.1 iBlinds in my home. Reinterviewing only changes the type from multilevel switches to window covering on v3.1 blinds. Version 2 blinds remain multilevel switches after reinterviewing.

                    The Window Covering class is supposedly better. The MLS class is designed for rolling blinds, so on/off will have the bllinds all the way open, or all the way off. With horizonal blinds, the 0/100 values are just 180 degree opposites of a closed blind. With Window Covering class, I believe there are values to tell the Z-Wave system what type of blind it is, and specify what is open versus closed. I dealt with iBlinds support maybe 4 or 5 months ago, and at the time, no Z-Wave system supported Window Covering. Zwave JS implemented the change shortly thereafter.

                    G Offline
                    G Offline
                    gwp1
                    wrote on last edited by
                    #15

                    @tamorgen I'm poking at it now. It seems for the iblinds I can now use cover.close and the [0] NO (default) setting for direction vs having it set to [1] YES to make it tilt the way I want it to when closed.

                    I was using power_switch.off previously to close my v3.1's.

                    *Hubitat C-7 2.4.3.177
                    *Proxmox VE v8, Beelink MiniPC 12GBs, SSD

                    *HAOS
                    Core 2026.1.1
                    w/ HA Connect ZWA-2
                    FW: v1.1
                    SDK: v7.23.1

                    *Prod MSR in docker/portainer
                    MSR: latest-26011-c621bbc7
                    MQTTController: 25139
                    ZWave Controller: 25139

                    1 Reply Last reply
                    0
                    • T tamorgen

                      @gwp1 said in [SOLVED] New iblind and zwaveJScontroller/MSR not communicating:

                      Further, I just discovered if I do a reinterview on an existing blind via ZWaveJS in HA it switches to this new Window Covering mode.

                      For what it's worth, I have both v2 and v3.1 iBlinds in my home. Reinterviewing only changes the type from multilevel switches to window covering on v3.1 blinds. Version 2 blinds remain multilevel switches after reinterviewing.

                      The Window Covering class is supposedly better. The MLS class is designed for rolling blinds, so on/off will have the bllinds all the way open, or all the way off. With horizonal blinds, the 0/100 values are just 180 degree opposites of a closed blind. With Window Covering class, I believe there are values to tell the Z-Wave system what type of blind it is, and specify what is open versus closed. I dealt with iBlinds support maybe 4 or 5 months ago, and at the time, no Z-Wave system supported Window Covering. Zwave JS implemented the change shortly thereafter.

                      G Offline
                      G Offline
                      gwp1
                      wrote on last edited by
                      #16

                      UPDATE: after many lost hours last night/this morning (hello, 0230 ET, looking at you) I found cover.x and power_switch.x to be woefully unreliable after reinterviewing the blinds.

                      What has proven reliable is position.set for which I use 0 for closed, 50 for open and have the blinds (as they were previously) set to [1] YES for Reverse Direction.

                      *Hubitat C-7 2.4.3.177
                      *Proxmox VE v8, Beelink MiniPC 12GBs, SSD

                      *HAOS
                      Core 2026.1.1
                      w/ HA Connect ZWA-2
                      FW: v1.1
                      SDK: v7.23.1

                      *Prod MSR in docker/portainer
                      MSR: latest-26011-c621bbc7
                      MQTTController: 25139
                      ZWave Controller: 25139

                      toggledbitsT 1 Reply Last reply
                      0
                      • T Offline
                        T Offline
                        tamorgen
                        wrote on last edited by
                        #17

                        I've been using the ID hass>cover_blind_horizontal_slats_angle and x_hass_cover.open_cover_tilt or x_haas_cover.close_cover_tilt and it works flawlessly for open and close. If I want to set the position for partial close when the sun is glarring into the room, I use x_hass_cover.set_cover_tilt_position with the same ID, and set the tilt_position to whatever I want to reduce the glare.

                        My only problem now is that I use mushroom for my dashboard in Home Assistant, and the templates for covers hasn't caught up with the new Window Covering class. It makes adjusting the blinds more problematic from HA.

                        1 Reply Last reply
                        0
                        • G gwp1

                          UPDATE: after many lost hours last night/this morning (hello, 0230 ET, looking at you) I found cover.x and power_switch.x to be woefully unreliable after reinterviewing the blinds.

                          What has proven reliable is position.set for which I use 0 for closed, 50 for open and have the blinds (as they were previously) set to [1] YES for Reverse Direction.

                          toggledbitsT Offline
                          toggledbitsT Offline
                          toggledbits
                          wrote on last edited by
                          #18

                          @gwp1 said in [SOLVED] New iblind and zwaveJScontroller/MSR not communicating:

                          UPDATE: after many lost hours last night/this morning (hello, 0230 ET, looking at you) I found cover.x and power_switch.x to be woefully unreliable after reinterviewing the blinds.

                          Can you please be more descriptive here? I don't have these devices, so I can't test them, but that doesn't mean I'm not interested in getting them working reliably. But the description given isn't enough for me to do any troubleshooting at all.

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

                          G 1 Reply Last reply
                          0
                          • toggledbitsT toggledbits

                            @gwp1 said in [SOLVED] New iblind and zwaveJScontroller/MSR not communicating:

                            UPDATE: after many lost hours last night/this morning (hello, 0230 ET, looking at you) I found cover.x and power_switch.x to be woefully unreliable after reinterviewing the blinds.

                            Can you please be more descriptive here? I don't have these devices, so I can't test them, but that doesn't mean I'm not interested in getting them working reliably. But the description given isn't enough for me to do any troubleshooting at all.

                            G Offline
                            G Offline
                            gwp1
                            wrote on last edited by gwp1
                            #19

                            @toggledbits of course, no problem! I cannot seem to upload images into this response. I've uploaded to your Dropbox shared folder a pair of images.

                            Using the iblind I sent you logs and such for previously as the example, I have a blind called Beach Blind (two guest rooms, one is named Ocean, the other Beach). I use the commands from the ID Beach Blind from zwavejs. As @tamorgen notes, there is also a new one (with the changes HA made) from my HASS controller called Beach Blind Horizontal Slates Angle which has a few less commands including those mentioned starting with x_hass_*.

                            I use the ZwaveJSController commands.

                            cover.open
                            cover.close
                            power_switch.on
                            power_switch.off
                            position.set
                            zwave_device.refresh
                            zwave_device.set_config

                            These are the ones I most commonly use to open, close, and tilt the blinds. refresh is used to force HA to update dasheboards with any changes and set_config I use less often, weekly, to recalibrate the blinds as they do wander sometimes and "open" becomes "open-ish".

                            I'd been using power_switch.on to open and cover.close to close. The blinds have been happiest that way. With these new changes from HA, these commands have become hit/miss. In the HA ZWaveJS plugin the status would reflect 0/closed but the blind was clearly wide open.

                            Last night/this morning I opted to use position.set and it's been pretty solid from what I've seen throughout the day.
                            position.set = 0 nets me a closed blind, position.set = .5 nets me a wide open/"slates level with the ground" blind. I used position.set = .2 or .3 to tilt the sun away during specific dayparts based on sun azimuth.

                            I did not grab MSR logs during those tests - apologies, it was 0200 ET and I just wanted the blinds closed for the night. I have amassed 13 of these iblinds over the past couple years.

                            If you wish, I'll set some time tonight or tomorrow night and generate some MSR logs.

                            *Hubitat C-7 2.4.3.177
                            *Proxmox VE v8, Beelink MiniPC 12GBs, SSD

                            *HAOS
                            Core 2026.1.1
                            w/ HA Connect ZWA-2
                            FW: v1.1
                            SDK: v7.23.1

                            *Prod MSR in docker/portainer
                            MSR: latest-26011-c621bbc7
                            MQTTController: 25139
                            ZWave Controller: 25139

                            T 1 Reply Last reply
                            0
                            • G gwp1

                              @toggledbits of course, no problem! I cannot seem to upload images into this response. I've uploaded to your Dropbox shared folder a pair of images.

                              Using the iblind I sent you logs and such for previously as the example, I have a blind called Beach Blind (two guest rooms, one is named Ocean, the other Beach). I use the commands from the ID Beach Blind from zwavejs. As @tamorgen notes, there is also a new one (with the changes HA made) from my HASS controller called Beach Blind Horizontal Slates Angle which has a few less commands including those mentioned starting with x_hass_*.

                              I use the ZwaveJSController commands.

                              cover.open
                              cover.close
                              power_switch.on
                              power_switch.off
                              position.set
                              zwave_device.refresh
                              zwave_device.set_config

                              These are the ones I most commonly use to open, close, and tilt the blinds. refresh is used to force HA to update dasheboards with any changes and set_config I use less often, weekly, to recalibrate the blinds as they do wander sometimes and "open" becomes "open-ish".

                              I'd been using power_switch.on to open and cover.close to close. The blinds have been happiest that way. With these new changes from HA, these commands have become hit/miss. In the HA ZWaveJS plugin the status would reflect 0/closed but the blind was clearly wide open.

                              Last night/this morning I opted to use position.set and it's been pretty solid from what I've seen throughout the day.
                              position.set = 0 nets me a closed blind, position.set = .5 nets me a wide open/"slates level with the ground" blind. I used position.set = .2 or .3 to tilt the sun away during specific dayparts based on sun azimuth.

                              I did not grab MSR logs during those tests - apologies, it was 0200 ET and I just wanted the blinds closed for the night. I have amassed 13 of these iblinds over the past couple years.

                              If you wish, I'll set some time tonight or tomorrow night and generate some MSR logs.

                              T Offline
                              T Offline
                              tamorgen
                              wrote on last edited by
                              #20

                              @gwp1 said in [SOLVED] New iblind and zwaveJScontroller/MSR not communicating:

                              With these new changes from HA, these commands have become hit/miss.

                              To be precise, it's not so much a change from HA, but from ZWaveJS. They're recognizing a new command class that the developers at iBlinds actually recommend.

                              I don't believe the old power switch commands work with the new command class. When I go into a specific device in ZwaveJS, the switch type devices are greyed out.

                              46ce7b67-822d-4800-ad9e-84e420f830a6-image.png

                              if you go into the switch, it shows it as unavailable.

                              b487cb9f-a396-460f-8190-1753e356ff73-image.png

                              I would guess the power on/off cover.close / cover.open are remnants and probably need to be removed.

                              G 1 Reply Last reply
                              0
                              • T tamorgen

                                @gwp1 said in [SOLVED] New iblind and zwaveJScontroller/MSR not communicating:

                                With these new changes from HA, these commands have become hit/miss.

                                To be precise, it's not so much a change from HA, but from ZWaveJS. They're recognizing a new command class that the developers at iBlinds actually recommend.

                                I don't believe the old power switch commands work with the new command class. When I go into a specific device in ZwaveJS, the switch type devices are greyed out.

                                46ce7b67-822d-4800-ad9e-84e420f830a6-image.png

                                if you go into the switch, it shows it as unavailable.

                                b487cb9f-a396-460f-8190-1753e356ff73-image.png

                                I would guess the power on/off cover.close / cover.open are remnants and probably need to be removed.

                                G Offline
                                G Offline
                                gwp1
                                wrote on last edited by
                                #21

                                @tamorgen said in [SOLVED] New iblind and zwaveJScontroller/MSR not communicating:

                                I don't believe the old power switch commands work with the new command class. When I go into a specific device in ZwaveJS, the switch type devices are greyed out.

                                I noticed this as well. I've also noticed that tapping into the dialogue you're showing (how did you copy/paste images, I keep getting a parsing server error...) nets a slider in HA that does nothing. It literally says UNKNOWN at the top where a percentage would be display of openness or closure.

                                171bb72b-e73d-4b6b-8f17-df6dada2ea20-image.png

                                *Hubitat C-7 2.4.3.177
                                *Proxmox VE v8, Beelink MiniPC 12GBs, SSD

                                *HAOS
                                Core 2026.1.1
                                w/ HA Connect ZWA-2
                                FW: v1.1
                                SDK: v7.23.1

                                *Prod MSR in docker/portainer
                                MSR: latest-26011-c621bbc7
                                MQTTController: 25139
                                ZWave Controller: 25139

                                T 1 Reply Last reply
                                0
                                • G gwp1

                                  @tamorgen said in [SOLVED] New iblind and zwaveJScontroller/MSR not communicating:

                                  I don't believe the old power switch commands work with the new command class. When I go into a specific device in ZwaveJS, the switch type devices are greyed out.

                                  I noticed this as well. I've also noticed that tapping into the dialogue you're showing (how did you copy/paste images, I keep getting a parsing server error...) nets a slider in HA that does nothing. It literally says UNKNOWN at the top where a percentage would be display of openness or closure.

                                  171bb72b-e73d-4b6b-8f17-df6dada2ea20-image.png

                                  T Offline
                                  T Offline
                                  tamorgen
                                  wrote on last edited by tamorgen
                                  #22

                                  @gwp1
                                  It seems to me that something may be missing from this command class integration. I know iBlinds was working with the ZWaveJS developers. I'm curious is this is what they expected.

                                  When I look at the entities in MSR, there are a lot of entries that have null or unknown. I'm not sure if this is coming from MSR expecting entries in a specific command class or if ZWaveJs is providing it to MSR that way.

                                  623091af-63d6-4a31-b68b-5bc8cbd5ff4b-image.png

                                  Of all the actions in that window, the cover.xxx don't seem to work for me. The only ones that seem to work are:

                                  x_hass_cover.close_cover_tilt
                                  x_hass_cover.open_cover_tilt
                                  x_hass_cover.set_cover_tilt_position

                                  Others may work, but these are the one's I know specifically work and from an automation perspective meet my needs.

                                  G 1 Reply Last reply
                                  0
                                  • T tamorgen

                                    @gwp1
                                    It seems to me that something may be missing from this command class integration. I know iBlinds was working with the ZWaveJS developers. I'm curious is this is what they expected.

                                    When I look at the entities in MSR, there are a lot of entries that have null or unknown. I'm not sure if this is coming from MSR expecting entries in a specific command class or if ZWaveJs is providing it to MSR that way.

                                    623091af-63d6-4a31-b68b-5bc8cbd5ff4b-image.png

                                    Of all the actions in that window, the cover.xxx don't seem to work for me. The only ones that seem to work are:

                                    x_hass_cover.close_cover_tilt
                                    x_hass_cover.open_cover_tilt
                                    x_hass_cover.set_cover_tilt_position

                                    Others may work, but these are the one's I know specifically work and from an automation perspective meet my needs.

                                    G Offline
                                    G Offline
                                    gwp1
                                    wrote on last edited by
                                    #23

                                    @tamorgen Yep. The ZWaveJSController from @toggledbits was doing the same and that's what started this thread. He reviewed data from my system and updated his ZWaveJSController to work with those command classes.

                                    *Hubitat C-7 2.4.3.177
                                    *Proxmox VE v8, Beelink MiniPC 12GBs, SSD

                                    *HAOS
                                    Core 2026.1.1
                                    w/ HA Connect ZWA-2
                                    FW: v1.1
                                    SDK: v7.23.1

                                    *Prod MSR in docker/portainer
                                    MSR: latest-26011-c621bbc7
                                    MQTTController: 25139
                                    ZWave Controller: 25139

                                    1 Reply Last reply
                                    0
                                    • T Offline
                                      T Offline
                                      tamorgen
                                      wrote on last edited by
                                      #24

                                      Okay, gotcha. I did verify that the cover.open using the zwavejscontroller entries does work on my system with the updated release. Curious that the cover.open command does not work using the equivalent haas entity.

                                      G 1 Reply Last reply
                                      0
                                      • T tamorgen

                                        Okay, gotcha. I did verify that the cover.open using the zwavejscontroller entries does work on my system with the updated release. Curious that the cover.open command does not work using the equivalent haas entity.

                                        G Offline
                                        G Offline
                                        gwp1
                                        wrote on last edited by
                                        #25

                                        @tamorgen cover.open and cover.close worked for me intermittently, eventually degrading to not at all. position.set seems to be working pretty well.

                                        *Hubitat C-7 2.4.3.177
                                        *Proxmox VE v8, Beelink MiniPC 12GBs, SSD

                                        *HAOS
                                        Core 2026.1.1
                                        w/ HA Connect ZWA-2
                                        FW: v1.1
                                        SDK: v7.23.1

                                        *Prod MSR in docker/portainer
                                        MSR: latest-26011-c621bbc7
                                        MQTTController: 25139
                                        ZWave Controller: 25139

                                        G 1 Reply Last reply
                                        0
                                        • G gwp1

                                          @tamorgen cover.open and cover.close worked for me intermittently, eventually degrading to not at all. position.set seems to be working pretty well.

                                          G Offline
                                          G Offline
                                          gwp1
                                          wrote on last edited by
                                          #26

                                          @toggledbits I conducted some tests tonight.

                                          MSR's ZWaveJSController
                                          HA ZWaveJSController Plugin via HA

                                          Sending you an image since I can't upload any here for some reason (parser error) via your file share.

                                          Results of my tests:
                                          MSR's ZWJSC: no response
                                          HA ZWJSC plugin: no response from any command other than x_hass_cover.set_cover_tilt_position

                                          [latest-23242]2023-09-17T23:34:45.311Z <Rule:INFO> The Internet is up (rule-l2gdh04j in Notifications) evaluation complete
                                          [latest-23242]2023-09-17T23:34:45.312Z <Rule:INFO> Check Internet Status (rule-l2f9yuad in Reactor Alerts and Checks) evaluation complete
                                          [latest-23242]2023-09-17T23:34:45.313Z <Rule:INFO> HTTP Failed Alerts (rule-l2kd6w6k in Reactor Alerts and Checks) evaluation complete
                                          [latest-23242]2023-09-17T23:34:45.313Z <Rule:INFO> MSR Update Notifier (rule-l9vf6nai in Reactor Alerts and Checks) evaluation complete
                                          [latest-23242]2023-09-17T23:34:45.316Z <Rule:INFO> The Internet is up (rule-l2gdh04j in Notifications) starting evaluation; because entity-changed System#reactor_system>system
                                          [latest-23242]2023-09-17T23:34:45.317Z <Rule:INFO> Check Internet Status (rule-l2f9yuad in Reactor Alerts and Checks) starting evaluation; because entity-changed System#reactor_system>system
                                          [latest-23242]2023-09-17T23:34:45.317Z <Rule:INFO> HTTP Failed Alerts (rule-l2kd6w6k in Reactor Alerts and Checks) starting evaluation; because entity-changed System#reactor_system>system
                                          [latest-23242]2023-09-17T23:34:45.317Z <Rule:INFO> MSR Update Notifier (rule-l9vf6nai in Reactor Alerts and Checks) starting evaluation; because entity-changed System#reactor_system>system
                                          [latest-23242]2023-09-17T23:34:45.318Z <Rule:INFO> The Internet is up (rule-l2gdh04j in Notifications) trigger evaluation result is false (previously false)
                                          [latest-23242]2023-09-17T23:34:45.318Z <Rule:INFO> The Internet is up (rule-l2gdh04j in Notifications) evaluated; trigger state unchanged (false); rule state remains RESET
                                          [latest-23242]2023-09-17T23:34:45.320Z <Rule:INFO> Check Internet Status (rule-l2f9yuad in Reactor Alerts and Checks) trigger evaluation result is false (previously false)
                                          [latest-23242]2023-09-17T23:34:45.320Z <Rule:INFO> Check Internet Status (rule-l2f9yuad in Reactor Alerts and Checks) evaluated; trigger state unchanged (false); rule state remains RESET
                                          [latest-23242]2023-09-17T23:34:45.321Z <Rule:INFO> HTTP Failed Alerts (rule-l2kd6w6k in Reactor Alerts and Checks) trigger evaluation result is false (previously false)
                                          [latest-23242]2023-09-17T23:34:45.321Z <Rule:INFO> HTTP Failed Alerts (rule-l2kd6w6k in Reactor Alerts and Checks) evaluated; trigger state unchanged (false); rule state remains RESET
                                          [latest-23242]2023-09-17T23:34:45.322Z <Rule:INFO> MSR Update Notifier (rule-l9vf6nai in Reactor Alerts and Checks) trigger evaluation result is false (previously false)
                                          [latest-23242]2023-09-17T23:34:45.323Z <Rule:INFO> MSR Update Notifier (rule-l9vf6nai in Reactor Alerts and Checks) evaluated; trigger state unchanged (false); rule state remains RESET
                                          [latest-23242]2023-09-17T23:34:45.323Z <Rule:INFO> The Internet is up (rule-l2gdh04j in Notifications) evaluation complete
                                          [latest-23242]2023-09-17T23:34:45.323Z <Rule:INFO> Check Internet Status (rule-l2f9yuad in Reactor Alerts and Checks) evaluation complete
                                          [latest-23242]2023-09-17T23:34:45.324Z <Rule:INFO> HTTP Failed Alerts (rule-l2kd6w6k in Reactor Alerts and Checks) evaluation complete
                                          [latest-23242]2023-09-17T23:34:45.324Z <Rule:INFO> MSR Update Notifier (rule-l9vf6nai in Reactor Alerts and Checks) evaluation complete
                                          [latest-23242]2023-09-17T23:34:45.346Z <Rule:INFO> Change to Night (via ESPresense) (rule-kwc6rmci in Mode Triggers) starting evaluation; because entity-changed ValueSensor#hass>sensor_john_iphone_battery_status
                                          [latest-23242]2023-09-17T23:34:45.349Z <Rule:INFO> Change to Night (via ESPresense) (rule-kwc6rmci in Mode Triggers) trigger evaluation result is false (previously false)
                                          [latest-23242]2023-09-17T23:34:45.349Z <Rule:INFO> Change to Night (via ESPresense) (rule-kwc6rmci in Mode Triggers) evaluated; trigger state unchanged (false); rule state remains RESET
                                          [latest-23242]2023-09-17T23:34:45.350Z <Rule:INFO> Change to Night (via ESPresense) (rule-kwc6rmci in Mode Triggers) evaluation complete
                                          [latest-23242]2023-09-17T23:34:50.341Z <Rule:INFO> Change to Night (via ESPresense) (rule-kwc6rmci in Mode Triggers) starting evaluation; because entity-changed ValueSensor#hass>sensor_john_iphone_battery_status
                                          [latest-23242]2023-09-17T23:34:50.347Z <Rule:INFO> Change to Night (via ESPresense) (rule-kwc6rmci in Mode Triggers) trigger evaluation result is false (previously false)
                                          [latest-23242]2023-09-17T23:34:50.348Z <Rule:INFO> Change to Night (via ESPresense) (rule-kwc6rmci in Mode Triggers) evaluated; trigger state unchanged (false); rule state remains RESET
                                          [latest-23242]2023-09-17T23:34:50.349Z <Rule:INFO> Change to Night (via ESPresense) (rule-kwc6rmci in Mode Triggers) evaluation complete
                                          [latest-23242]2023-09-17T23:34:51.559Z <HubitatController:INFO> HubitatController#hubitat ignoring DEVICE event for device 1405 (Sun Position); device not enumerated by Maker API
                                          [latest-23242]2023-09-17T23:34:51.600Z <HubitatController:INFO> HubitatController#hubitat ignoring DEVICE event for device 1405 (Sun Position); device not enumerated by Maker API
                                          [latest-23242]2023-09-17T23:34:51.662Z <HubitatController:INFO> HubitatController#hubitat ignoring DEVICE event for device 1405 (Sun Position); device not enumerated by Maker API
                                          [latest-23242]2023-09-17T23:34:55.352Z <Rule:INFO> Change to Night (via ESPresense) (rule-kwc6rmci in Mode Triggers) starting evaluation; because entity-changed ValueSensor#hass>sensor_john_iphone_battery_status
                                          [latest-23242]2023-09-17T23:34:55.357Z <Rule:INFO> Change to Night (via ESPresense) (rule-kwc6rmci in Mode Triggers) trigger evaluation result is false (previously false)
                                          [latest-23242]2023-09-17T23:34:55.357Z <Rule:INFO> Change to Night (via ESPresense) (rule-kwc6rmci in Mode Triggers) evaluated; trigger state unchanged (false); rule state remains RESET
                                          [latest-23242]2023-09-17T23:34:55.359Z <Rule:INFO> Change to Night (via ESPresense) (rule-kwc6rmci in Mode Triggers) evaluation complete
                                          [latest-23242]2023-09-17T23:34:55.426Z <Engine:INFO> Enqueueing "Blinds DR Open" (re-kx6a2k13)
                                          **[latest-23242]2023-09-17T23:34:55.429Z <Engine:NOTICE> Starting reaction Blinds DR Open (re-kx6a2k13)**
                                          [latest-23242]2023-09-17T23:34:56.685Z <ZWaveJSController:5:ZWaveJSController.js:798> ZWaveJSController#zwavejs handling node event statistics updated entity Cover#zwavejs>22-0
                                          [latest-23242]2023-09-17T23:34:56.767Z <ZWaveJSController:5:ZWaveJSController.js:798> ZWaveJSController#zwavejs handling node event value updated entity Cover#zwavejs>22-0
                                          [latest-23242]2023-09-17T23:34:56.769Z <ZWaveJSController:5:ZWaveJSController.js:994> ZWaveJSController#zwavejs update node 22 value "0:106:targetValue:23" data [Object]{ "source": "node", "event": "value updated", "nodeId": 22, "args": { "commandClassName": "Window Covering", "commandClass": 106, "endpoint": 0, "property": "targetValue", "propertyKey": 23, "newValue": 50, "prevValue": 0, "propertyName": "targetValue", "propertyKeyName": "Horizontal Slats Angle" } }
                                          [latest-23242]2023-09-17T23:34:56.770Z <ZWaveJSController:5:ZWaveJSController.js:1006> ZWaveJSController#zwavejs updating attributes for node 22 value "0:106:targetValue:23"=50: [Array][  ]
                                          [latest-23242]2023-09-17T23:34:56.771Z <ZWaveJSController:5:ZWaveJSController.js:1025> ZWaveJSController#zwavejs setting Cover#zwavejs>22-0.x_zwave_values.Window_Covering_targetValue_23 to 50
                                          [latest-23242]2023-09-17T23:34:56.782Z <ZWaveJSController:5:ZWaveJSController.js:798> ZWaveJSController#zwavejs handling node event value updated entity Cover#zwavejs>22-0
                                          [latest-23242]2023-09-17T23:34:56.783Z <ZWaveJSController:5:ZWaveJSController.js:994> ZWaveJSController#zwavejs update node 22 value "0:106:currentValue:23" data [Object]{ "source": "node", "event": "value updated", "nodeId": 22, "args": { "commandClassName": "Window Covering", "commandClass": 106, "property": "currentValue", "propertyKey": 23, "endpoint": 0, "newValue": 50, "prevValue": 0, "propertyName": "currentValue", "propertyKeyName": "Horizontal Slats Angle" } }
                                          [latest-23242]2023-09-17T23:34:56.785Z <ZWaveJSController:5:ZWaveJSController.js:1006> ZWaveJSController#zwavejs updating attributes for node 22 value "0:106:currentValue:23"=50: [Array][ "cover.state", "position.value" ]
                                          [latest-23242]2023-09-17T23:34:56.787Z <ZWaveJSController:5:ZWaveJSController.js:1013> ZWaveJSController#zwavejs updating attribute cover.state with [Object]{ "entity": "22-0", "impl": { "expr": "!(value == 0 || value >= 99)", "valueId": "106:currentValue:23" } }
                                          [latest-23242]2023-09-17T23:34:56.787Z <ZWaveJSController:5:ZWaveJSController.js:947> ZWaveJSController#zwavejs _apply_value entity Cover#zwavejs>22-0 cover.state
                                          [latest-23242]2023-09-17T23:34:56.788Z <ZWaveJSController:5:ZWaveJSController.js:987> ZWaveJSController#zwavejs _apply_value cover.state=true
                                          [latest-23242]2023-09-17T23:34:56.789Z <ZWaveJSController:5:ZWaveJSController.js:1013> ZWaveJSController#zwavejs updating attribute position.value with [Object]{ "entity": "22-0", "impl": { "expr": "round( value / 99, 2 )", "valueId": "106:currentValue:23" } }
                                          [latest-23242]2023-09-17T23:34:56.790Z <ZWaveJSController:5:ZWaveJSController.js:947> ZWaveJSController#zwavejs _apply_value entity Cover#zwavejs>22-0 position.value
                                          [latest-23242]2023-09-17T23:34:56.791Z <ZWaveJSController:5:ZWaveJSController.js:987> ZWaveJSController#zwavejs _apply_value position.value=0.51
                                          [latest-23242]2023-09-17T23:34:56.792Z <ZWaveJSController:5:ZWaveJSController.js:1025> ZWaveJSController#zwavejs setting Cover#zwavejs>22-0.x_zwave_values.Window_Covering_currentValue_23 to 50
                                          [latest-23242]2023-09-17T23:34:56.807Z <HassController:INFO> HassController#hass action x_hass_cover.set_cover_tilt_position([Object]{ "tilt_position": 50 }) on Cover#hass>cover_dining_room2_horizontal_slats_angle succeeded
                                          [latest-23242]2023-09-17T23:34:56.809Z <Engine:INFO> Resuming reaction Blinds DR Open (re-kx6a2k13) from step 1
                                          [latest-23242]2023-09-17T23:34:56.810Z <Engine:NOTICE> Blinds DR Open delaying until 1694993697809<9/17/2023, 7:34:57 PM>
                                          [latest-23242]2023-09-17T23:34:56.930Z <ZWaveJSController:5:ZWaveJSController.js:798> ZWaveJSController#zwavejs handling node event statistics updated entity Cover#zwavejs>22-0
                                          [latest-23242]2023-09-17T23:34:57.811Z <Engine:INFO> Resuming reaction Blinds DR Open (re-kx6a2k13) from step 2
                                          [latest-23242]2023-09-17T23:34:57.812Z <ZWaveJSController:INFO> ZWaveJSController#zwavejs performing zwave_device.refresh on Cover#zwavejs>7-0 with [Object]{  }
                                          [latest-23242]2023-09-17T23:34:57.814Z <ZWaveJSController:5:ZWaveJSController.js:1750> ZWaveJSController#zwavejs no implementation mapped; attempting default
                                          [latest-23242]2023-09-17T23:34:57.815Z <ZWaveJSController:5:ZWaveJSController.js:751> ZWaveJSController#zwavejs sending #1694993697815<9/17/2023, 7:34:57 PM>: [Object]{ "command": "node.refresh_values", "nodeId": 7, "messageId": 1694993697815 }
                                          [latest-23242]2023-09-17T23:34:57.830Z <ZWaveJSController:5:ZWaveJSController.js:778> ZWaveJSController#zwavejs command result error: [Object]{ "type": "result", "success": false, "messageId": 1694993697815, "errorCode": "node_not_found", "args": { "nodeId": 7 } }
                                          [latest-23242]2023-09-17T23:34:57.832Z <ZWaveJSController:ERR> ZWaveJSController#zwavejs request 1694993697815<9/17/2023, 7:34:57 PM> (node.refresh_values) failed: [Error] node_not_found [-]
                                          [latest-23242]2023-09-17T23:34:57.834Z <Engine:INFO> Resuming reaction Blinds DR Open (re-kx6a2k13) from step 3
                                          [latest-23242]2023-09-17T23:34:57.835Z <Engine:INFO> Blinds DR Open all actions completed.
                                          

                                          If you'd like the whole log I can upload that as well or anything else you need for review.

                                          *Hubitat C-7 2.4.3.177
                                          *Proxmox VE v8, Beelink MiniPC 12GBs, SSD

                                          *HAOS
                                          Core 2026.1.1
                                          w/ HA Connect ZWA-2
                                          FW: v1.1
                                          SDK: v7.23.1

                                          *Prod MSR in docker/portainer
                                          MSR: latest-26011-c621bbc7
                                          MQTTController: 25139
                                          ZWave Controller: 25139

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Recent Topics

                                          • HA and AI
                                            PablaP
                                            Pabla
                                            0
                                            2
                                            94

                                          • Self test
                                            CatmanV2C
                                            CatmanV2
                                            0
                                            3
                                            82

                                          • How to upgrade from an old version of MSR?
                                            CatmanV2C
                                            CatmanV2
                                            0
                                            6
                                            162

                                          • Access control - allowing anonymous user to dashboard
                                            toggledbitsT
                                            toggledbits
                                            0
                                            2
                                            109

                                          • VEC Virtual Switch Auto Off
                                            S
                                            SweetGenius
                                            1
                                            1
                                            78

                                          • Upcoming Storage Change -- Got Back-ups?
                                            toggledbitsT
                                            toggledbits
                                            3
                                            1
                                            74

                                          • Oddness in Copy/Move of Reactions
                                            G
                                            gwp1
                                            0
                                            1
                                            89

                                          • [Solved] function isRuleEnabled() issue
                                            CrilleC
                                            Crille
                                            0
                                            4
                                            181

                                          • [Reactor] Problem with Global Reactions and groups
                                            therealdbT
                                            therealdb
                                            0
                                            3
                                            170

                                          • Possible feature request 2?
                                            CatmanV2C
                                            CatmanV2
                                            0
                                            3
                                            146

                                          • Reactor (Multi-System/Multi-Hub) Announcements
                                            toggledbitsT
                                            toggledbits
                                            5
                                            133
                                            84.1k

                                          • Genuinely impressed with Zigbee and HA / Reactor
                                            CatmanV2C
                                            CatmanV2
                                            1
                                            9
                                            445
                                          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