|
hace 7 años | |
---|---|---|
EsPy | hace 7 años | |
.gitattributes | hace 8 años | |
.gitignore | hace 8 años | |
EsPy.sln | hace 8 años | |
README.md | hace 7 años |
https://github.com/jungervin/EsPy/tree/master/EsPy/Release
Only unzip the downloaded file and run EsPy.exe
To use all features (esptool), Python installation is recomended
After Python intsallation:
quick test:
from machine import Pin
import time
p = Pin(2, Pin.OUT)
for i in range(5):
print(i)
time.sleep_ms(500)
p.low()
time.sleep_ms(500)
p.high()
Good to know: