-->
Page 55 of 58

run the file 'main.py' from Explorer

PostPosted: Fri Oct 14, 2016 5:57 am
by mimidbe
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. ;)

Re: ESPlorer — Next Generation IDE for ESP8266 developers

PostPosted: Mon Oct 17, 2016 5:44 am
by Khyrtsi
Does anyone know if ESplorer is still being developed by 4fr0nt, or is there some fork thats being active developed?

Re: ESPlorer — Next Generation IDE for ESP8266 developers

PostPosted: Mon Oct 17, 2016 6:31 pm
by flagtrax
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.

Re: ESPlorer — Next Generation IDE for ESP8266 developers

PostPosted: Tue Oct 18, 2016 4:16 am
by Khyrtsi
Khyrtsi wrote:Does anyone know if ESplorer is still being developed by 4fr0nt, or is there some fork thats being active developed?


Seems I was a bit quick to judge, there has been some merges for pull requests. Great:)