本站改版新增arduino频道

Micropython
Arduino

micropython esp32 LED 0.2S快闪


from machine import Pin
import time
LED = Pin(12, Pin.OUT)#这里合宙esp32c3 板载LED
while True:
	time.sleep(0.2) # Set 0.2s Python execute time.
	LED.value(1)
	time.sleep(0.2) # Set 0.2s Python execute time.
	LED.value(0)



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

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

执行时间: 0.0095980167388916 seconds