You are reading a single comment by @Gill and its replies. Click here to read the full conversation.
  • Hi
    I uploaded the following to the Espruino device
    function toggle() {
    on = !on;
    digitalWrite(LED1, on);
    digitalWrite(LED2, !on);
    }

    var interval = setInterval(toggle,500);

    Then executed the save() on the terminal

About

Avatar for Gill @Gill started