micropython

  1. 마이크로파이선 (micropython)

마이크로파이선 (micropython)

  1. 아래 사이트 참고

참고사이트

  1. 펌웨어 다운로드 (Getting the firmware)

MicroPython download page

wind+x 키를 눌러서 포트(COM & LPT)의 COM포트번호를 확인

  1. ESP8266 보드에 설치하기
\> pip install esptool
\> esptool.py --port COMxx erase_flash
\> esptool.py --port COMxx write_flash 0 xxx.bin
esptool.py v2.6
Serial port COM13
Connecting....
...

Leaving...
Hard resetting via RTS pin...
import esp
esp.check_fw()
from machine import Pin
from time import sleep

led = Pin(2, Pin.OUT)

while True:
  led.value(not led.value())
  sleep(0.5)

© 2018. All rights reserved.

Powered by Hydejack v8.4.0