本站改版新增arduino频道

Micropython
Arduino

micropython esp32 esp8266 深度睡眠


深度休眠唤醒:一般来说开发板类型的8266深度睡眠采用以下方式,以下例程来自管方文档。

import machine

rtc = machine.RTC()

rtc.irq(trigger=rtc.ALARM0, wake=machine.DEEPSLEEP)

# set RTC.ALARM0 to fire after 60 seconds (waking the device)

rtc.alarm(rtc.ALARM0, 10000)

# put the device to sleep

machine.deepsleep()



推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号

执行时间: 0.011366128921509 seconds