I write simple blink code and it doesn't work on all 3 nodeMCU boards I have
1. I flash the board multiple times
2. I connect it at equal baud rates
what's the problem?
while 1 do
gpio.write(0,gpio.HIGH)
tmr.delay(10000)
gpio.write(0,gpio.LOW)
tmr.delay(10000)
end