Reading input and temperature in a script

Die Verwendung von Skripten liegt im eigenen Ermessen des Benutzers. Unterstützung für Skripte wird vom Autor des Skripts bereitgestellt.
  • I want to read the status of my inputs and the temperature of my DS18B20 sensor on my add-on. Can anyone provide

    a code snippet to do this?

    The code snippet supplied by Shelly does show how to get the input status but via a callback which only gets called on a change.

    I would like to just read the status.

    I cant work out how read the temperature at all!

  • Hi and welcome to the forum. :)

    What kind of script do ask for? Shelly-scripting or script for a automation system like ioBroker?

  • Here's a quick example


    just for clarification: it is mandatory to have some basic javscript skills in order to work with Shelly mJS, all functions are documented here:

    https://shelly-api-docs.shelly.cloud/gen2/Scripts/S…anguageFeatures

    >100 Shellies, darunter so gut wie alles was der Hersteller produziert hat. ;)
    :!: ich beantworte grundsätzlich keine Fragen per persönlicher Nachricht:!:

  • Hello!

    If you want to read the temperature from the DS18b20 sensor on the Shelly AddOn, you should call something like this:

    Code
    Shelly.call(
        "temperature.getStatus",
        { id: 100 },
        function (response) {  
            MQTT.publish("hello/world", JSON.stringify(response), 0, false);
        },
        null
    );
  • Could you show an example of reading the temp/hunifity, calculate the dew point and activate the power outlet if dew point is below x degrees?

  • Dieses Thema enthält einen weiteren Beitrag, der nur für registrierte Benutzer sichtbar ist.