So you're a Noob? Post your questions here until you graduate! Don't be shy.

User avatar
By flywire
#61015
kejlycz wrote:... it's enough to hit "Reload" of "FS Info":-)

:D :D :D Fixed - thank you kejlycz - the Reload button in ESPlorer made it work. The ESPlorer Chip Info, Chip ID and Flash ID buttons are working. I was nearly ready to give up.

I tried loading linux but my system has a BIOS that is incompatible with all of the distros and there is no BIOS upgrade available for my old motherboard.
Last edited by flywire on Sat Jan 14, 2017 4:03 pm, edited 1 time in total.
User avatar
By flywire
#61017 This code toggles gpio16 (named D0) which has the blue led connected. Reassuring to at last see the results from code writing the gpio status but I don't know why the led does not flash.

Code: Select allgpio.mode(0,gpio.OUTPUT)
print(gpio.read(0),"\n")
gpio.write(0,gpio.LOW)
print(gpio.read(0),"\n")
tmr.delay(1000000)
gpio.write(0,gpio.HIGH)
print(gpio.read(0),"\n")
Last edited by flywire on Sun Jan 15, 2017 2:33 am, edited 1 time in total.