Search found 2 matches

by thehose
Wed Aug 26, 2015 5:01 pm
Forum: Other Boards
Topic: NodeMCU V2 Dev. Board
Replies: 3
Views: 5440

Re: NodeMCU V2 Dev. Board

Can you elaborate (for my education) about the watch dog (timer I presume) issue. Is it causing the ESP8266 to reboot randomly (since I see the MEM CHECK failures) ??
Is this an issue with MP on ALL ESP8266s or specific to this Chinese dev. board.
by thehose
Tue Aug 25, 2015 9:10 pm
Forum: Other Boards
Topic: NodeMCU V2 Dev. Board
Replies: 3
Views: 5440

NodeMCU V2 Dev. Board

Hey folks, Trying Micropython on my NodeMCU V2 (ESP8266 12-E) development board. Playing with the REPL is fine but when I use main.py and a finite loop it never stops... import pyb pin = pyb.Pin(14, pyb.Pin.OUT_PP) for i in range(10): pin.low() pyb.delay(1000) pin.high() pyb.delay(1000) I would expe...