加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
switch.py 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
孙东晓 提交于 2018-05-31 22:50 . change motor driver
#!/usr/bin/python3
#coding=utf-8
#author:sundxfansky@sjtu.edu.cn
#继电器模块驱动 2_raly_model drive
# #测试程序
# GPIO.setmode(GPIO.BOARD)
# #给定初始值
# GPIO.setup(36, GPIO.OUT, initial = GPIO.LOW)
# GPIO.setup(38, GPIO.OUT, initial = GPIO.LOW)
# time.sleep(2)
# print("opening....")
# GPIO.output(36,GPIO.HIGH)
# GPIO.output(38,GPIO.HIGH)
# time.sleep(10)
# GPIO.cleanup()
#初始化开关
def switch_init(switch1 = 36,switch2 = 38):
print("Switch initializing......")
gpio.setup(switch1, gpio.OUT, initial = gpio.HIGH)
gpio.setup(switch2, gpio.OUT, initial = gpio.HIGH)
print("Switch initialized")
#开启驱动版
def open_drive_board(switch = 36):
print("Opening drive board......")
gpio.output(switch,gpio.LOW)
print("Opened drive board")
#向前走
def change_move_forward(switch = 38):
print("Changing move forward.....")
gpio.output(switch,gpio.LOW)
print("changed move forward")
#向后走
def change_move_back(switch = 38):
print("Changing move back.....")
gpio.output(switch,gpio.HIGH)
print("changed move back")
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化