當前位置: 首頁>>代碼示例>>Python>>正文


Python GPIO.setmode方法代碼示例

本文整理匯總了Python中gpio_pins.GPIO.setmode方法的典型用法代碼示例。如果您正苦於以下問題:Python GPIO.setmode方法的具體用法?Python GPIO.setmode怎麽用?Python GPIO.setmode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在gpio_pins.GPIO的用法示例。


在下文中一共展示了GPIO.setmode方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: UPS_Sender

# 需要導入模塊: from gpio_pins import GPIO [as 別名]
# 或者: from gpio_pins.GPIO import setmode [as 別名]
try:
    GPIO.setup(pin_power_ok, GPIO.IN, pull_up_down=GPIO.PUD_UP)
except NameError:
    pass

try:
    if gv.platform == 'pi':  # If this will run on Raspberry Pi:
        pin_ups_down = 18 # GPIO24
    elif gv.platform == 'bo':  # If this will run on Beagle Bone Black:
        pin_ups_down = " "
except AttributeError:
    pass

try:
    GPIO.setmode(GPIO.BOARD) ## Use board pin numbering
    GPIO.setup(pin_ups_down, GPIO.OUT)
    GPIO.output(pin_ups_down, GPIO.LOW)

except NameError:
    pass


################################################################################
# Main function loop:                                                          #
################################################################################

class UPS_Sender(Thread):
    def __init__(self):
        Thread.__init__(self)
        self.daemon = True
開發者ID:teodoryantcheff,項目名稱:OSPy,代碼行數:32,代碼來源:ups_adj.py


注:本文中的gpio_pins.GPIO.setmode方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。