lot_manager/test_led.py

19 lines
489 B
Python
Raw Normal View History

2023-12-26 17:06:05 +08:00
'''
实验名称点亮第1个LED
实验平台核桃派
'''
2023-12-26 17:06:31 +08:00
import time
2023-12-26 17:03:11 +08:00
2023-12-26 17:12:04 +08:00
# 导入相关模块
2023-12-26 17:06:05 +08:00
import board
from digitalio import DigitalInOut, Direction
2023-12-26 17:12:04 +08:00
# 构建LED对象和初始化
while True:
2023-12-26 17:13:24 +08:00
led = DigitalInOut(board.CS1) # 定义引脚编号
led.direction = Direction.OUTPUT # IO为输出
2023-12-26 17:12:04 +08:00
print("熄灭")
led.value = 0 # 输出低电平熄灭板载LED蓝灯
print("点亮")
2023-12-26 17:13:04 +08:00
time.sleep(20)
2023-12-26 17:12:04 +08:00
led.value = 1 # 输出高电平点亮板载LED蓝灯