• Yes, I saved the code with save(). The code is :

    setInterval(function() {
      digitalWrite(LED1, 1);
      setTimeout(function () {
        digitalWrite(LED1, 0);
      }, 20);
    }, 10000);
    setDeepSleep(1); 
    
About

Avatar for Gerald @Gerald started