Keine Beschreibung

Ervin, Jung cc4f3c3686 Update README.md vor 8 Jahren
EsPy a6d1321a33 Add files via upload vor 8 Jahren
.gitattributes 2916781960 Add .gitignore and .gitattributes. vor 8 Jahren
.gitignore 2916781960 Add .gitignore and .gitattributes. vor 8 Jahren
EsPy.sln e856a96644 Add project files. vor 8 Jahren
README.md cc4f3c3686 Update README.md vor 8 Jahren

README.md

MicroPython IDE for ESP8266

Minimum Requirements:

  • MS Windows 7
  • MS .NET Framework 4.6

Features:

  • Code editor
  • Interactive terminal
  • File manager
  • esptool

Installation:

Only unzip the downloaded file.

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

After Python intsallation:

  • python -m pip install --upgarde pip
  • python -m pip install esptool
  • python -m pip install jedi
  • python -m pip install pylint

###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:

  • Filemanager is enabled when device is connected and not busy
  • Esptool enabled when the port is closed

Download v1.0.0.5:

https://github.com/jungervin/EsPy/raw/master/EsPy/Release/EsPy.1.0.0.5.7z

Images:

alt text

alt text

alt text