logo头像

猪老大要进步!

体重称制作1:MicroPython开发板

本文于 573 天之前发表,文中内容可能已经过时。

记录制作一个体重称的流程。这一篇讲的是如何让ESP32的MicroPython开发板连接电脑并刷入固件。

开箱

fXXTyT

刷固件

  1. 下载CH341Windows串口驱动,下载地址:http://www.wch.cn/download/CH341SER_EXE.html

    fXvt5d

    重新插拔开发板,发现电脑上识别出来开发板的串口COM3!!注意下面要用到这个串口号!!

    fXxJyV

  2. 先去MircoPython官网下载固件,因为我从淘宝上买的不知名板子,稳妥点刷通用版固件吧,下载页面:https://micropython.org/download/esp32/

    fXvS4s

  3. 安装esptool的Python包

    1
    pip install esptool
  4. 刷入固件,分为两步。先清除Flash,再写入固件。

    1
    2
    esptool --chip esp32 --port COM3 erase_flash
    esptool --chip esp32 --port COM3 write_flash -z 0x1000 esp32-20210623-v1.16.bin

    fXXsQf

Thonny

Thonny是一个Python IDE,在这里使用它的好处是可以方便地与开发板交互。在Thonny的主界面点击工具-设置-解释器,选择MicroPython (ESP32)解释器。如果一切顺利,则下面的Shell会变成MircoPython的样式,我们可以在Shell中指挥开发板运行命令。

fXzMnK

Shell中输入help()可以获得帮助信息:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
>>> help()
Welcome to MicroPython on the ESP32!

For generic online docs please visit http://docs.micropython.org/

For access to the hardware use the 'machine' module:

import machine
pin12 = machine.Pin(12, machine.Pin.OUT)
pin12.value(1)
pin13 = machine.Pin(13, machine.Pin.IN, machine.Pin.PULL_UP)
print(pin13.value())
i2c = machine.I2C(scl=machine.Pin(21), sda=machine.Pin(22))
i2c.scan()
i2c.writeto(addr, b'1234')
i2c.readfrom(addr, 4)

Basic WiFi configuration:

import network
sta_if = network.WLAN(network.STA_IF); sta_if.active(True)
sta_if.scan() # Scan for available access points
sta_if.connect("<AP_name>", "<password>") # Connect to an AP
sta_if.isconnected() # Check for successful connection

Control commands:
CTRL-A -- on a blank line, enter raw REPL mode
CTRL-B -- on a blank line, enter normal REPL mode
CTRL-C -- interrupt a running program
CTRL-D -- on a blank line, do a soft reset of the board
CTRL-E -- on a blank line, enter paste mode

For further help on a specific object, type help(obj)
For a list of available modules, type help('modules')

附件下载

  1. 驱动下载
  2. esp32 1.16通用固件下载

参考资料

  1. MicroPython官方文档
  2. MicroPython中文文档
  3. https://thonny.org/
  4. CSDN: 使用MicroPython开发ESP32
  5. CH341 Windows驱动
  6. Windows10下的固件烧录
  7. LoLin32 Lite开发板信息
  8. https://micropython.org/
支付宝打赏 微信打赏

赞赏是不耍流氓的鼓励