I flash with nodemcu_float_0.9.6-dev_20150704.bin
> =node.info()
0 9 6 14695097 1458400 4096 2 40000000
> =node.heap()
34048
> =node.chipid()
14695097
> =node.flashid()
1458400
In ESPlorer, these command work well.
But,
while 1 do
gpio.write(0, gpio.HIGH)
tmr.delay(1000000) -- wait 1,000,000 us = 1 second
gpio.write(0, gpio.LOW)
tmr.delay(1000000) -- wait 1,000,000 us = 1 second
end
I write this code and press <send to ESP> botton
But it is not working
also AP command does not working
like this
> AT
>>
How can I solve it?