Chat about current Lua tools and IDEs

User avatar
By mimidbe
#56505 I had some problems to run the file 'main.py' at boot of esp8266.
file 'main.py' is edited under ESPLORER, and transfered to the esp8266.
At RESET, it did not work.
the solution must be added an EOL ('\ n') to each line.
example:
import time\n
import machine\n
pin = machine.Pin(2, machine.Pin.OUT)\n

print('Hello world! I can count:')\n
i = 1\n

for i in range(10):\n
pin.low()\n
time.sleep(0.5)\n
pin.high()\n
time.sleep(0.5)\n
print(i)\n

so for the developper... could you automate this feature! Thank you in advance. ;)
User avatar
By flagtrax
#56674
Khyrtsi wrote:Does anyone know if ESplorer is still being developed by 4fr0nt, or is there some fork thats being active developed?

The version I have is v0.2.0-rc5. I believe it said rc6 on github but when I installed it it said rc-5. I think that's the only update I've seen.