美文网首页
ESP32起步

ESP32起步

作者: 诺之林 | 来源:发表于2020-05-13 12:04 被阅读0次

开发板

NodeMCU-32S Lua WiFi物联网开发板 串口WiFi模块 基于ESP32-S

驱动

ESP32开发板使用了CP2104作为板载的USB转串口 因此需要安装串口驱动才能使用

工具

# https://github.com/espressif/esptool
pip3 install esptool

esptool.py version
# esptool.py v2.8

固件

# 擦除自带固件
esptool.py --port /dev/tty.SLAB_USBtoUART erase_flash

# 写入MicroPython固件
esptool.py --port /dev/tty.SLAB_USBtoUART --baud 460800 write_flash -z 0x1000 ~/Downloads/esp32-idf4-20191220-v1.12.bin 

screen /dev/tty.SLAB_USBtoUART 115200
print("hello esp32")
# hello esp32

操作

screen /dev/tty.SLAB_USBtoUART 115200
import time
from machine import Pin 
led = Pin(2, Pin.OUT)
while True:
    led.value(1)
    time.sleep(1)
    led.value(0)
    time.sleep(1)

相关文章

网友评论

      本文标题:ESP32起步

      本文链接:https://www.haomeiwen.com/subject/azyzwhtx.html