Jump to content
Shelly wiring diagram Now LIVE ×
🌟 NEW Shelly Products Reveal Video! 🌟 NEUE Shelly-Produkte-Enthüllungsvideo! 🌟 ×

Nach Update FW 1.3 auf 1.4.3 kein Autostart Script


Udo66

Recommended Posts

Hallo,

Nach Update FW 1.3 auf 1.4.3 erfolgt kein Autostart eines Scripts. Manueller Start ohne Probleme möglich. Nach einem Reboot erfolgt kein Start des Scripts mehr.

Das Problem bestand seit der Beta 1.4 schon. Hatte damals wieder Downgrade durchgeführt und alles war gut. Auch neue Scripte aus der Bibliothek starten nicht automatisch.

Gruss Udo

Link to comment
Share on other sites

Ich habe versucht, dein Problem nachzustellen mit Firmware 1.4.3 auf einem PRO 3EM - bei mir funktioniert es. Test Setup:

image.png.e4d30ac9ad6bebe2e61fb54e252d416b.png

let counter = 0.0;

Shelly.call(
  "KVS.Get", {
     "key": "counter",
  },
  function callback(result, error_code, error_message, userdata) {
    if (error_code === 0)
    {
      counter = Number(result.value);
      print("counter: ", counter);
    }
    Shelly.call(
      "KVS.Set", {
        "key": "counter",
        "value": (counter + 1),
      },
      function(result) {
        print("KVS Saved, rev:", result.rev);
      }
    );
  }
);

Bei jedem Boot wird die KVS "counter" um eins hochgezählt.

Test mal bitte dieses Skript - was passiert bei dir? @Udo66 

Edited by tvbshelly
Link to comment
Share on other sites

Habe inzwischen weitere Untersuchungen gemacht. Zum Schluss habe ich alle Scripte auf dem Gerät gelöscht. Der Punkt Scripte war dann komplett leer. Gerät neu gestartet.

Dann die gleichen Script wieder installiert, hatte sie vorher mir kopiert. Alles funktioniert wieder. Da hat sich beim Update bestimmt im Speicher was verschluckt anders kann ich mir das nicht vorstellen.

Das ist mir bisher nur beim pro 3em passiert andere Typen hatten das Problem nicht. 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...