编程语言
首页 > 编程语言> > ESP32使用micropython心得

ESP32使用micropython心得

作者:互联网

可以先看一下eps8266和esp 32的对比介绍,了解一下eps32特点

https://www.cirmall.com/articles/398156

配置对应环境

本次环境使用工具pycharm,需依次安装 esptool,adafruit-ampy。在pycharm上安装“intellij-MicroPython 插件”。
esptool安装

pip install esptool

adafruit-ampy 安装

pip install adafruit-ampy

intellij-MicroPython 插件 配置
插件配置

擦除原ESP32命令:

esptool --chip esp32 --port COM3 erase_flash

在这里插入图片描述

烧录micropython

下载地址:https://micropython.org/download#esp32 目前最新版本esp32-20190825-v1.11-240-g519746cae.bin
切换文件目录到下载目录,执行命令:

esptool --chip esp32 --port COM3 --baud 115200 write_flash -z 0x1000 esp32-20190825-v1.11-240-g519746cae.bin

在这里插入图片描述

使用连接工具测试是否刷固件成功

使用工具 xshell 和 putty均可
连接成功后,输入测试语句:

print('hello world!')

在这里插入图片描述
在这里插入图片描述

标签:micropython,adafruit,esptool,安装,ESP32,ampy,心得,esp32
来源: https://blog.csdn.net/xiaozhun1223/article/details/100060420