jungervin / EsPy

Micropython IDE for ESP8266
71 stars 25 forks source link

MicroPython IDE for ESP8266

v1.0.0.12

Downloads

https://github.com/jungervin/EsPy/tree/master/EsPy/Release

Minimum Requirements:

Features:

Installation:

Only unzip the downloaded file and run EsPy.exe

To use all features (esptool), Python installation is recomended

After Python intsallation:

Quick Start:

  1. On the menubar choose Device => Ports and select one
  2. Press the connect button on the toolbar
  3. Press the Soft Reset button on the toolbar
  4. Press the New button on the toolbar and create a new py file
  5. Type the code and press the Run button on the toolbar. (When the statusbar color is orange, it means the device is busy)

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:

Images:

alt text

alt text

alt text