当前位置: 首页>>代码示例>>Python>>正文


Python GPIO.clean方法代码示例

本文整理汇总了Python中GPIO.clean方法的典型用法代码示例。如果您正苦于以下问题:Python GPIO.clean方法的具体用法?Python GPIO.clean怎么用?Python GPIO.clean使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在GPIO的用法示例。


在下文中一共展示了GPIO.clean方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: move

# 需要导入模块: import GPIO [as 别名]
# 或者: from GPIO import clean [as 别名]
class move(object):
  """ This class drives the robot around given the pin numbers it's connected to"""
  def __init(self,RF,RR,LF,LR):
    pass   
    
  def setup(self,RF,RR,LF,LR):
    """This will set up the GPIO pins to move the robot"""
    self.RF=RF
    self.RR=RR
    self.LF=LF
    self.LR=LR
    
    OUT='out'
    IN='in'
    self.pins = GPIO()
    self.pins.setup(self.RF, OUT)
    self.pins.setup(self.RR, OUT)
    self.pins.setup(self.LF, OUT)
    self.pins.setup(self.LR, OUT) 

  def forward(self):
    """Turns pins on to move forward"""
    self.stop()
    self.pins.write(self.RF,1)
    self.pins.write(self.RR,0)
    self.pins.write(self.LF,1)
    self.pins.write(self.LR,0)
    
  def reverse(self):
    """Turns pins on to move backward"""
    self.stop()
    self.pins.write(self.RF,0)
    self.pins.write(self.RR,1)
    self.pins.write(self.LF,0)
    self.pins.write(self.LR,1)
    
  def right(self):
    """Turns pins to pivot right"""
    self.stop()
    self.pins.write(self.RF,0)
    self.pins.write(self.RR,1)
    self.pins.write(self.LF,1)
    self.pins.write(self.LR,0)

  def left(self):
    """Turns pins to pivot left"""
    self.stop()
    self.pins.write(self.RF,1)
    self.pins.write(self.RR,0)
    self.pins.write(self.LF,0)
    self.pins.write(self.LR,1)
    
  def stop(self):
    """Turns all pins off to stop"""
    self.pins.write(self.RF,0)
    self.pins.write(self.RR,0)
    self.pins.write(self.LF,0)
    self.pins.write(self.LR,0)    

  def dispatch(self):
    """Unexport all pins used"""
    self.pins.clean(self.RF)
    self.pins.clean(self.RR)
    self.pins.clean(self.LF)
    self.pins.clean(self.LR)
开发者ID:QuantumApe,项目名称:pi-bot,代码行数:67,代码来源:move.py


注:本文中的GPIO.clean方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。