|
7 лет назад | |
---|---|---|
EsPy | 7 лет назад | |
.gitattributes | 8 лет назад | |
.gitignore | 8 лет назад | |
EsPy.sln | 8 лет назад | |
README.md | 7 лет назад |
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: