Reliability of scripting

Die Verwendung von Skripten liegt im eigenen Ermessen des Benutzers. Unterstützung für Skripte wird vom Autor des Skripts bereitgestellt.
  • Hello,

    My old solar water heater controller died and I'm on the way replacing it with a Shelly 2PM + Add-on. Basically the Shelly will read 1 thermistor (residing in the collector on the roof) and 5 DS18B20s, and switch on/off the pump circulating the collector water.

    I'm new to Shelly but a veteran in Home Assistant and have some electronic background and I am a software engineer by trade. I need your experience on the following questions. Anything is really appreciated, from "I have one shelly controlling XY for a year without any problem" to more technical answers.

    1. Is Shelly 2PM + Add-on reliable enough for this type off control? Reliability in general and for example voltage spikes caused by storms, may that alter/clear the config/script, does it have some kind of preventive solution to this (like checksuming the firmware and scripts and doing something when the check fails).

    2. Is Shelly scripting reliable enough to control this? Reading 6 temp sensors, math calculation based on the data and switching the pump on/off + MQTT reporting.

    3. Do you know some links to blogs or docs about reliable scripting on a Shelly? For example something about internal or external watchdogs, device monitoring (CPU, RAM, internal temperature etc), script monitoring.

    4. What would you do with reliability in mind: a) use the Shelly just as an input/output device and put the logic into Home Assistant or b) let the Shelly do the control via scripting and Home Assistant only for displaying the data? Both have advantages in reliability perspective, and I don't know which way would be better.

    Thanks in advance.

    Regards

  • I went with the logic on the Shelly approach. The main reason was to mitigate WIFI related problems, so the Shelly is able to control the hot water production even if it has no connection to the MQTT server (i.e. Home Assistant).

    To make things reliable I made the following so far:

    1. I have two scripts running on the Shelly.

    2. The first one is the main controller script.

    3. The second is a watchdog script.

    4. In the controller script in case of a logic error (for example can not read one of the sensors or temperature is outside of normal range) I switch of the pump's relay and do nothing until everything is okay in the next try (the logic is timer based, so it runs periodically every 60s).

    5. The watchdog script handles the script status change events. If the main script stops, the watchdog switches of the pump's relay.

    6. The watchdog periodically publishes the status of the main script on MQTT. (The status update over MQTT is enabled in the Shelly settings, but in case of Home Assistant restart without this I won't get the status of the running script as it is published only on change.)

    7. Home assistant alerts me if the control script's status changes from running to stopped.

    8. Home assistant alerts me if there is not enough hot water.

    Any tips on this?

    Until now it works fine. I like this scripting possibility on the Shelly, I even didn't know that this is available on the Shellys when I bought the Plus 2PM. I have to polish the scripts further and I will extend it with control of the 2nd relay in the Shelly, which will switch the electric heater in the tank based on water usage and weather forecast published on MQTT by Home Assistant. (The electric heater will be switched by a high power contactor not the small relay in the Shelly, and I have RC snubbers certified for mains use on both loads).

  • This is a very good compilation.

    Additional if the controller stopped the watchdog may log data to a persistant (script) file at the Shelly non volatile storage appending or overwrtiting or one file overwritten and another file appended.

    After such logging, the watchdog can start the controller ...

    Have a look at the documentation to Script.PutCode!

    This logging also works without WLAN and can be analyzed if necessary.

    The log file is not a script, but a data file. It appears as a non-executable script.

    An Cloud-/Szenen-Benutzer (insbesondere für Regelungen): Was erwartest du, wenn Internet oder Cloud sabotiert werden? Nicht nur dafür meine kleine Skripteinführung  8)

    Die einzig existierende Konstante ist der Wandel. Oft liegt die größte Schwierigkeit darin, das Anliegen des Klienten zu verstehen.

  • I am using a Shelly Plus 1 for self-sufficient heating control on a radiator for about a quarter of a year. This regulation is based on a script, which also provides a web server suitable for the application. So far I haven't noticed any failure.

    I store the control data in an Influx database and let it display via Grafana.

    An Cloud-/Szenen-Benutzer (insbesondere für Regelungen): Was erwartest du, wenn Internet oder Cloud sabotiert werden? Nicht nur dafür meine kleine Skripteinführung  8)

    Die einzig existierende Konstante ist der Wandel. Oft liegt die größte Schwierigkeit darin, das Anliegen des Klienten zu verstehen.

  • Dieses Thema enthält 8 weitere Beiträge, die nur für registrierte Benutzer sichtbar sind.