Nodemcu v3 esp8266 module problem

Posted on
  • Hi What to do?


    1 Attachment

    • Снимок экрана (4).png
  • Well, the ESP8266 has no LED1 defined.

    Erase that code at the right side, write your own and have fun ;-)

  • Just add const LED1 = D2 or const LED1 = NodeMCU.D4; //(pin2 of ESP8266) to get the build-in LED blinking.
    And actually you don't need the variables LED1 and on as you can simply call D2.toggle() or NodeMCU.D4.toggle() to toggle the pin D2/build-in LED:

    setInterval(function() {
       D2.toggle();
    }, 1000);
    

    To stop the blinking call clearInterval().

  • Caution: clearInterval() - with no arguments - is most likely fatal to any of your code... because it clears every set interval in the whole system. Therefore - when you need to clear a set interval you hold on to the hanndle return by the setting and use that handle for the clearing:

    var iId = setInterval(D2.toggle.bind(D2), 500);
    

    To stop the blinking you code:

    clearInterval(iId);
    

    This blinker thing has though an issue: the LED / Pin may stay on or off depending when it get's stopped. Therefore, you may think about this:

    clearInterval(iId); D2.write(0);  // stop blinking and turn LED off
    

    (.write(0) is assuming hat .write(1) turns the LED on; otherwise: you just use .write(1)).

    The next issue with this blinker thing is that it turns the LED on for the first time after the first interval has passed. Therefore you also enhance the setup with:

    var iId = setInterval(D2.toggle.bind(D2), 500); D2.write(1);
    

    ('Some' will now speak up and say: the first blink will be shorter than the others... yep. If you 'turn it around' and turn LED on before setting up the interval for toggling, the first blink will be longer than the others... But both matter only when interval time is gets close to the time to execute code for either turning the LED on and setting up the interval, respective. Either way, if this this the case, the LED still blinks but not for the human eye.)

    There is more to this blink thing,... (may be in another post or conversation).

    PS: I used the fat arrow function to tidy the code.

  • Post a reply
    • Bold
    • Italics
    • Link
    • Image
    • List
    • Quote
    • code
    • Preview
About

Nodemcu v3 esp8266 module problem

Posted by Avatar for user106666 @user106666

Actions