1.引言
上一篇我们在ESP32上实现了LED灯的闪烁,但是有一个问题,该功能的实现需要我们在串口终端里去手动执行代码,是否可以让ESP32上电后自动执行代码呢?当然是可以的,本篇文章介绍如何实现该功能。
2.ampy安装
ampy是什么,大家直接看下方的官方介绍即可,
https://github.com/scientifichackers/ampy
Adafruit MicroPython Tool (ampy) - Utility to interact with a CircuitPython or MicroPython board over a serial connection.
Ampy is meant to be a simple command line tool to manipulate files and run code on a CircuitPython or MicroPython board over its serial connection. With ampy you can send files from your computer to the board's file system, download files from a board to your computer, and even send a Python script to a board to be executed.
安装方式:
pip install adafruit-ampy -upgrade
3.ampy工具使用
前面的2篇文章,我们都是通过直接在Putty终端里写代码或者把Windows里写好的代码复制到Putty终端里执行的。有了ampy后,我们就不需要这么做了,我们可以先在Windows写好MicroPython程序,然后通过ampy工具直接运行程序。
第1步:在Windows里,写一个hello.py文件
print("Hello World!")
第2步:直接在DOS窗口里,通过ampy在板子上运行hello.py程序,执行:
ampy --port COM3 run led.py
注意:执行ampy指令前,你得确保串口没有被占用。
如果换成下方的led.py文件
from machine import Pin
import time
led=Pin(4,Pin.OUT)
while True:
led.on()
print("LED on!")
time.sleep(1.0) # Delay for 1 second.
led.off()
print("LED off!")
time.sleep( 1.0 ) # Delay for 1 second.
执行:
ampy --port COM3 run led.py
我们看到led在不断闪烁了,但是并没有打印信息,这是什么原因呢?
没打印的原因:By default the run command will wait for the script to finish running on the board before printing its output.
因为代码里是一个while(1)循环,所以一直不会退出,所以也就不会打印了。
针对这种情况,我们可以使用下面的指令:
ampy --port COM3 run --no-output led.py
这样就不会一直停在那里了。同时我们打开PuTTY可以看到在这里一直有打印输出。
4.上电执行代码
通过以下3个步骤就可以实现上电自动执行代码了:
将led.py改名为main.py
ampy --port COM3 put main.py
板子重新上电,就可以看到灯不停的闪烁了
如果需要删除掉main.py,只需要执行:
ampy --port COM3 rm main.py
上面的工作机理是,通过ampy把main.py导入到ESP32板子里,上电后会自动执行main.py。
5.参考资料
http://www.cirmall.com/bbs/thread-102620-1-1.html
如果你喜欢这篇文章就点击 在看 或者 分享 给你的朋友吧!
扫码关注公众号:
加入微信交流群:
本文分享自微信公众号 - TopSemic嵌入式(TopSemic)。
如有侵权,请联系 support@oschina.cn 删除。
本文参与“OSC源创计划”,欢迎正在阅读的你也加入,一起分享。