Chat about current Lua tools and IDEs

User avatar
By Gregsta
#47288
dnc40085 wrote:ESPlorer is just a glorified serial terminal, so it shouldn't be contributing to the problem.

Are you using the right pin number? (ex. gpio4=2 gpio.write(gpio4, gpio.HIGH)) if yes, then...
Have you tried a current build of the dev branch from nodemcu-build.com (Note: dev branch uses 115200 baud rate)?



Thank you, I'll have a look of that.
User avatar
By giedrius_WEB
#52976 Hi,
I had the same problem. When I unchecked "Dumb Mode" in Settings, after that program started normally.
And very simple code for test
Code: Select allled=0 --change GPIO number
gpio.mode(led, gpio.OUTPUT)
gpio.write(led,gpio.LOW)
tmr.delay(500000)
gpio.write(led,gpio.HIGH)

espdumpmode.png