Skip to content
/ EsPy_cn Public
forked from jungervin/EsPy

我喜欢的一个windows下的micropython开发工具,我做了一些修改。

Notifications You must be signed in to change notification settings

watrt/EsPy_cn

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MicroPython IDE for ESP32

v2.0.0.2

依赖:

  • MS Windows 7
  • MS .NET Framework 4.6

特性:

  • 代码编辑
  • 终端运行
  • 文件管理
  • 自带烧写工具
  • 全部完成汉化
  • 优化操作
  • 支持中文IDE
  • 优化布局

安装扩展 Python intsallation:

  • python -m pip install --upgrade pip
  • python -m pip install esptool

快速开始:

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()

About

我喜欢的一个windows下的micropython开发工具,我做了一些修改。

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 34.9%
  • JavaScript 25.4%
  • C++ 22.7%
  • C# 6.6%
  • C 6.2%
  • CSS 3.6%
  • Other 0.6%