本文整理汇总了Python中PyGlow.PyGlow.arm方法的典型用法代码示例。如果您正苦于以下问题:Python PyGlow.arm方法的具体用法?Python PyGlow.arm怎么用?Python PyGlow.arm使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PyGlow.PyGlow
的用法示例。
在下文中一共展示了PyGlow.arm方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: input
# 需要导入模块: from PyGlow import PyGlow [as 别名]
# 或者: from PyGlow.PyGlow import arm [as 别名]
#####
#
# Python module to control Pimoronis PiGlow
# [http://shop.pimoroni.com/products/piglow]
#
# * pulsetest.py - test the pulsing light feature
#
#####
from PyGlow import PyGlow
b = input("Maximum brightness: ")
s = input("Speed in milliseconds (try 1000 as a default): ")
pyglow = PyGlow(brightness=b, speed=s, pulse=True)
pyglow.all(0)
print("Pulsing 1 Light")
pyglow.led(1)
print("Pulsing Arms")
pyglow.arm(1)
pyglow.arm(2)
pyglow.arm(3)
print("Pulsing All")
pyglow.all()