Navigation

    • Register
    • Login
    • OpenHardware.io
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. Goddur
    3. Topics
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by Goddur

    • Goddur

      How do I push Notification within Arduino IDE sketch?
      My Project • nodemcu sct-013 • • Goddur  

      2
      0
      Votes
      2
      Posts
      493
      Views

      TheoL

      @goddur I'm sorry my friend. I think this question is not related to MySensors. I've googled it for you. https://www.instructables.com/id/ESP8266-to-IFTTT-Using-Arduino-IDE/
    • Goddur

      Need settling time for sct-013-030 (Used w/Nodemcu)
      Troubleshooting • nodemcu sct-013 • • Goddur  

      2
      0
      Votes
      2
      Posts
      517
      Views

      Yveaux

      @goddur Hi, and welcome to the forum! So what exactly is your question/problem? If it is the time until you get a stable reading after reset of the Arduino, you could just count the time until you get a stable reading. Then include this delay after startup before reporting the first value and you're done. Something like: static int startupCycles = 10; // 10 seconds initial startup delay void loop() { delay(1000); Irms = emon1.calcIrms(1480); // Calculate Irms only if (startupCycles) { --startupCycles; return; } if (Irms < .2) { // your original code... } }