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

rafale77

@rafale77
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
Wiring Samotech SM308-S into light fitting
F
Hi Smart Home Community. I have used a Sonos inline WiFi switch to make one of my light fittings smart, but it requires a hard reset for WiFi changes, plus it isn't zigbee compatible, which means I can't use the Hue app to control it with the rest of the lights. To that end I bought a Samotech SM308-S as it is recommended as the better than the Sonos equivalent. I am however not exactly sure how to wire it in. The manual is available here Can anyone help me by clarifying which ports I need to use, and whether I should be using the live or switched live line for live etc. I will be keeping using standard switches for a while, although hope to upgrade to tap dials once I have all the fittings upgraded. Thanks
Hardware
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
Z-Wave Future....
DesTD
https://forum.z-wave.me/viewtopic.php?f=3417&t=36140 That's not a good thing I think Time to switch again?
Z-Wave.me
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
Disaster recovery and virtualisation
CatmanV2C
Following on from my last thread, some progress has been made over the weekend. With 18G of spanky RAM in my Synology DS224+. I've jumped into the murky world of virtualisation and already eliminated the need for two Raspberry Pi's from my system. Home Assistant: In theory they provide an OVA file which is supported by the Synology. I couldn't get it to work, however, so grabbed a copy of the .img file they supply, renamed it .iso and imported it as a VM. Restored from my full back up and that all seems fantastic. Minidnla Music server: Trivial. Grabbed a Debian .iso for Bookworm and copied that onto the NAS. Created a new machine which mirrored the specs of the Raspberry Pi, booted from the ISO then did an expert install. Once that was all stable with a basic core of stuff and networking, I've made a copy of that as a good base system. Then fired up minidnla on it, mounted my media and that's also woking. Not bad for a short weekend's work. Still not sure about the main NUC though. I'm thinking of buying a new USB stick so I can mess around getting it working on the Synology before I do anything drastic. Once that hurdle is sorted I'm torn between: Using a brand new install of Bookworm, re-installing Z-way server, OpenLuup, AltUI, MSR and HA bridge, then restoring across or Making an ISO of the current system, importing that and upgrading in place (which will be pretty risk free since I can snapshot everything before I make any changes.) Decisions, decisions. C
General Discussion
Remote access of Zwave stick from Z-wave server
CatmanV2C
Topic thumbnail image
Software
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
About
Posts
1.1k
Topics
84
Shares
0
Groups
1
Followers
3
Following
1

Posts

Recent Best Controversial

  • Nuke Vera Script
    rafale77R rafale77

    I have never observed this, Are you sure it isn't a network problem (switch maybe?)

    Vera

  • Z-Wave RF optimization
    rafale77R rafale77

    Interesting! I have moved and have taken down my entire system. It will be a few months before I get a new one up and running but it does indeed look like the noise level is quite a bit lower. Not sure if it is due to reporting differences or if it true noise decrease.

    Z-Wave.me

  • Vera firmware 7.32 beta
    rafale77R rafale77

    I have been mostly silent on this forum for some time now with the exception of the occasional notifications for questions addressed to me because I just moved to a new house and my system had been rock solid for over a year... mostly since I got rid of the vera.

    I now have to re-build everything from scratch in my new house while I had literally zero reliability issues with my previous setup in spite of its complexity (200+ devices integrated running 3 different software platform interconnected between z-way for zwave, Homeassistant for AI/cameras and the rare cloud integrations or integrations not existing on openLuup/vera and openLuup for scenes/automation/control interface.)
    I considered long and hard to sell my old home with the automation but at the end I decided to move as much as I could over mostly because I noticed an increasing trend of the industry to go towards wifi for ease of setup but which cannot scale to large installations and have to encroach into wifi bandwidth. It is getting a bit harder to buy zwave and even zigbee devices. I also didn't want to spend the time to go through the learning curve of hubitat which would have yielded no benefit to my setup.
    Dumping the vera was the single biggest improvement to my system and please, no ezlo... They are cost reduced and downgraded controllers to the vera in every important practical aspect.

    My new setup will be much lighter. Probably will not get to 175 zwave nodes, more likely <100 without the window coverings, fewer lights, fewer sensors. Heck I think I will dump the Phillips hue altogether too. I can't recommend enough migrating away from vera and go to openLuup or MSR in combination with Home Assistant for zigbee and integrations and z-way for z-wave while keeping devices as local as possible by avoiding all the wifi stuff which tend to be cloud dependent (with all their reliability and security disadvantages) and less efficient both in power and RF bandwidth. Still a new adventure...

    Vera

  • Is anyone using the Ring Doorbell plugin ?
    rafale77R rafale77

    My ring doorbell fell victim of my cloud dependance eradication project a few years ago, so I can't help with that one. I can only recommend replacing it with the one I am using... Superior in every way by offering a local 3MP RTSP stream, 5GHz wifi. It's already 3 years old but I haven't found anything better since. The only thing I wish it had is H.265 encoding. Mine is still going strong and is integrated into my system. I run facial recognition on it to trigger a variety of scenes on openLuup.
    It is the single most active doorbell thread in this forum:

    New RCA HSDB2A 3MP Doorbell IP Camera

    New RCA HSDB2A 3MP Doorbell IP Camera

    Has anyone gotten their hands on one yet? Is it a Hik rebrand as well? RTSP/ONVIF support? The specs look promising otherwise. 3MP, 5GHz wifi, and I really like the included up/down/side tilt...

    General Discussion

  • Smart home with no WIFI
    rafale77R rafale77

    Indeed! An ethernet network requires a router... or at least you need a DHCP server for these hubs (normally a function of any router and present in most managed ethernet switches).

    General Discussion

  • Smart home with no WIFI
    rafale77R rafale77

    Euhh, I think something is amiss here. Why running everything off of Zigbee have anything to do with getting internet in the future? If you get a hubitat, your hub will be hubitat. Wifi is just a different type of wireless network communication like zigbee and zwave. They just work on different protocols and frequencies and have different purposes:

    WIFI or WLAN is meant for high bandwidth, high power devices like your mobile computer and is meant to offer a bandwidth as close as possible to the wired ethernet (LAN) network it is piggy backed to. Not the most appropriate for smarthomes and especially for battery operated devices because it consumes more power and each device uses bandwidth. Given how little bandwidth smarthome device require, the communication overhead associated with WIFI makes it very wasteful but at this day in age, some people may have plenty of wifi bandwidth to use...

    Zwave is a dedicated smarthome protocol which has a fairly good universality mostly due to the fact that it was controller by a single company. Devices tend to be more expensive as a result but prices have been dropping.

    Zigbee is another dedicated smarthome protocol but it operates in the same wireless frequency band as WIFI. It is more opened and a lot of companies are involved in maintaining it and therefore has taken off quite nicely.

    Zigbee and Zwave require a controller like Hubitat which also need to connect a wired network through ethernet. The controller would have both the radio and small computer on board in which you would setup a software from which to control your devices.
    WIFI on the other hand, because of the ubiquity of its use, reuses the radio either on your WIFI router or WIFI access point but usually sends the controlling software out in the cloud so you would need internet access. There are also platforms which enables WIFI devices to be controller locally with a software you would download from the internet.

    Internet Access and WIFI are not the same. You can have internet access without WIFI or WIFI without internet access. Typically internet access comes in through a MODEM be it from Cable, Telephone or Fibre. There also now 4G/LTE Modem which enable connection to the cellular internet service which would be slower and more expensive and then output it through wire.

    Your smarthome fundamentally doesn't need WIFI or internet access but you do need a home wired network in any case to be able to access your controller. Adding WIFI or internet later has no impact whatsoever on your Zwave or Zigbee setup.

    General Discussion

  • Smart home with no WIFI
    rafale77R rafale77

    Most of us use both for flexibility. Zigbee has cheaper devices and some devices only exist on zigbee. Z-wave also has some unique devices. Since you won't have wifi, you probably don't care that Zigbee interferes with Wifi but also microwave ovens, BT and most cordless phones.... Wifi is a very inefficient protocol for RF. Z-wave is the most efficient from an energy consumption and RF emission perspective, closely followed by Zigbee. I avoid wifi smarthome devices myself because they are fundamentally a waste of bandwidth and energy.

    General Discussion

  • Controller shift - How do you do it ?
    rafale77R rafale77

    I didn't test extroot on the verasecure because I didn't have one to try it on. I think others on the forum did it and reported to work fine. There is nothing about the vera secure which makes it perform better than the plus. The extra core is unused... the vera UI is single threaded. It also does not use the CPU enough for the speed to make a difference. Same for the DRAM. The only benefit is the battery which to me would be more of a problem than benefit since they have limited lifetime and prevent me from easily power cycling the unit.

    General Discussion

  • Controller shift - How do you do it ?
    rafale77R rafale77

    @parkerc

    You must have missed my posts there... It has an extra CPU core indeed but the DRAM is unused by the software and the flash drive was catastrophically partitioned... netting less useable space than the Plus. After they got bought and my posts about the disastrous engineering they noodled around the partition with symlink (which I initiated with a script I provided on the forum too). I later moved on to boot the vera off of a USB SSD. I know about the zwave chip only because I dug into it. It makes no difference in functionality as the bridge mode the plus and edge had were not used by the vera. It makes the zwave firmware different though.

    General Discussion

  • Controller shift - How do you do it ?
    rafale77R rafale77

    Oh gosh... I need to remember this. I think at one point I found the firmware for the chip and using a serial updater, managed to manually upgrade the chip firmware through SSH. That was a long time ago. I think I published how to do this in the old forum but not sure if it's been deleted. At the moment, I no longer have any veras... Also the Vera secure runs on a different/cheaper chip than the vera plus I had.. Why don't you just let the vera run on the dongle?

    General Discussion

  • Controller shift - How do you do it ?
    rafale77R rafale77

    Using the vera backup process you would have to go up or remain on the same version. If you backed up your vera which is on 6.01 into a stick in 6.02, you should be able to restore onto another vera with an SDK 6.02 and above. Have you tried that? Upgrading the vera?

    To answer your question if you have both your controller with the same node ID, it will cause a mess to your network. In that case I would add the second controller so it takes a different node ID. (I ran vera and zway together this way for several months).
    Here is the type of mess it will cause:
    Controller1: turn the light one
    Light: Ok the light is on
    Controller2: Got it... euh What? who told you to?
    Controller1: Are you on yet? Timeout, let me ask again. Retry!

    This will cause the network to be very busy as nodes do not who to report back to or think they already reported and got an ack...

    General Discussion

  • Controller shift - How do you do it ?
    rafale77R rafale77

    5.33 =5.32 and 5.36=5.37 if I remember correctly. They were just version numbered for Razberry vs UZB.

    General Discussion

  • Controller shift - How do you do it ?
    rafale77R rafale77

    You should be able to downgrade back... But yeah that's what I feared... Upgrading too far would make it impossible for the vera to restore...

    General Discussion

  • Controller shift - How do you do it ?
    rafale77R rafale77

    You caught me there. I was probably smarter then than I am now. 😉

    My entire system has been working so well that I stopped tinkering or upgrading it save for only occasional additions or optimization of a scene here or there on openLuup. I lost a lot by not practicing.

    General Discussion

  • Controller shift - How do you do it ?
    rafale77R rafale77

    yep.. that's what I would do.

    General Discussion

  • Controller shift - How do you do it ?
    rafale77R rafale77

    This is weird... It should be above 6. Not sure what this 4.38 corresponds to. It looks like you need to keep going... Or try it to see if it migrates. You never know.

    General Discussion

  • Controller shift - How do you do it ?
    rafale77R rafale77

    Before you keep on upgrading, I would recommend to try the vera migration. 29304 is the bootloader I am currently on. So I am not sure what the new bootloader does. It doesn't look like I went down this upgrade path...

    General Discussion

  • Controller shift - How do you do it ?
    rafale77R rafale77

    Always upgrade bootloader before the firmware. I at times ended in a dead end and ended up having to use the linux tool to upgrades. The Z-way-server firmware upgrader doesn't always offer the "beta" versions which can be a necessary step to another official version. You can see more by inserting an "all" token but I prefer the lower level linux tool...

    Note that you may need to go up all the way to do the backup/copy. You just need to get close enough in the SDK version.

    General Discussion

  • Controller shift - How do you do it ?
    rafale77R rafale77

    Looks like you should be going to 5.26 and then 5.27. These are already 6.xx stack versions though.

    UZB/RaZberry Firmwares
    General Discussion

  • Controller shift - How do you do it ?
    rafale77R rafale77

    Yeah the only way I know of is for me to figure out the spaghetti for you…

    General Discussion
  • Login

  • Don't have an account? Register

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