ESP8266玩机记录

weifeng 2023/12/21

目录

环境准备

  1. Windows11 + python3.10
  2. pip install esptool
  3. https://micropython.org/download/ESP8266_GENERIC/ 下载MicroPython最新固件。

连接ESP8266开发版

  1. USB连接开发板
  2. 查看设备状态
D:/ $ esptool flash_id
esptool.py v4.8.1
Found 6 serial ports
Serial port COM8
Connecting....
Detecting chip type... Unsupported detection protocol, switching and trying again...
Connecting....
Detecting chip type... ESP8266
Chip is ESP8266EX
Features: WiFi
Crystal is 26MHz
MAC: 48:3f:da:04:3e:53
Uploading stub...
Running stub...
Stub running...
Manufacturer: 20
Device: 4016
Detected flash size: 4MB
Hard resetting via RTS pin...
  1. 擦除ESP8266的flash内容
D:/ $ esptool --chip esp8266 erase_flash
esptool.py v4.8.1
Found 6 serial ports
Serial port COM8
Connecting....
Chip is ESP8266EX
Features: WiFi
Crystal is 26MHz
MAC: 48:3f:da:04:3e:53
Uploading stub...
Running stub...
Stub running...
Erasing flash (this may take a while)...
Chip erase completed successfully in 14.6s
Hard resetting via RTS pin...
  1. 刷入固件

注意--flash_size detect参数不要省略,否则可能会导致输入固件无法正常使用。

D:/esp8266 $ esptool.exe write_flash --flash_size detect 0 ESP8266_GENERIC-20241129-v1.24.1.bin
esptool.py v4.8.1
Found 6 serial ports
Serial port COM8
Connecting....
Detecting chip type... Unsupported detection protocol, switching and trying again...
Connecting....
Detecting chip type... ESP8266
Chip is ESP8266EX
Features: WiFi
Crystal is 26MHz
MAC: 48:3f:da:04:3e:53
Uploading stub...
Running stub...
Stub running...
Configuring flash size...
Auto-detected Flash size: 4MB
Flash will be erased from 0x00000000 to 0x0009bfff...
Flash params set to 0x0040
Compressed 635956 bytes to 425615...
Wrote 635956 bytes (425615 compressed) at 0x00000000 in 37.6 seconds (effective 135.2 kbit/s)...
Hash of data verified.

Leaving...
Hard resetting via RTS pin...
  1. 连接网络

成功刷入固件后,设备会自动重启,并创建一个WiFi热点,名称格式MicroPython-xxxxxx,密码为micropythoN(注意大写的N),热点地址为192.168.4.1

  1. 查看ESP8266文件

固件刷入后,准备环境查看并传入自己的py程序。

pip install adafruit-ampy, 安装成功后,查看文件,注意传入正确的端口:

D:/esp8266 $ ampy -p COM8 ls
/boot.py

boot.py为ESP8266每次重启后或者深度睡眠唤醒后执行的代码。

  1. 编写代码并上传运行

编写main.py上传至flash。每次ESP8266模组重启后,会先运行boot.py然后运行main.py,在main.py中写入持续运行的业务代码即可。

以下示例,开发板上LED小灯重复亮一秒暗一秒,每3秒串口打印一次内存情况:

import gc
import uasyncio
from machine import Pin

async def update_led():
    while True:
        print("led_update")
        led = Pin(2, Pin.OUT)
        led.on()
        await uasyncio.sleep(1)
        led.off()
        await uasyncio.sleep(1)

async def update_system_info():
    while True:
        info = f"[system_info] mem_alloc:{gc.mem_alloc()} mem_free:{gc.mem_free()} threshold:{gc.threshold()}"
        print(info)
        await uasyncio.sleep(3)
        
loop = uasyncio.get_event_loop()
loop.create_task(update_led())
loop.create_task(update_system_info())
loop.run_forever()

ESP8266作为控制中枢语音控制舵机

连接图

原理:

  1. ESP8266给ASRPRO-01和舵机SG90提供电源;
  2. ASRPRO-01通过设置PB5为串口输出将语音识别ID传给ESP8266RX接收;
  3. ESP8266通过D2 PWM输出控制舵机转动。

一些经验