mirror of
https://gitee.com/quecpython/helios-service.git
synced 2025-05-19 06:08:22 +08:00
12 lines
326 B
Python
12 lines
326 B
Python
from machine import Pin, ExtInt
|
|
from usr.bin.third_party.ql_interrupter import PinInterrupter
|
|
|
|
# 初始化gpio
|
|
pin_inter = PinInterrupter(Pin.GPIO6, trige_mode=Pin.OUT, pull_mode=Pin.PULL_DISABLE, mode=0)
|
|
|
|
# 闪烁一次在1秒的持续时间
|
|
pin_inter.blinker(1)
|
|
|
|
# 闪烁3次2秒的持续时间
|
|
pin_inter.freq_blinker(3, 5)
|