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


Python Adafruit_DotStar.getPixels方法代码示例

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


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

示例1: bytearray

# 需要导入模块: from dotstar import Adafruit_DotStar [as 别名]
# 或者: from dotstar.Adafruit_DotStar import getPixels [as 别名]
power_settings = (1450, 1550)    # Battery avg and peak current

# INITIALIZATION -----------------------------------------------------------

# Set control pins to inputs and enable pull-up resistors.
# Buttons should connect between these pins and ground.
GPIO.setmode(GPIO.BCM)
GPIO.setup(pin_go    , GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.setup(pin_prev  , GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.setup(pin_next  , GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.setup(pin_slower, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.setup(pin_faster, GPIO.IN, pull_up_down=GPIO.PUD_UP)

strip.begin() # Initialize SPI pins for output

ledBuf     = strip.getPixels() # Pointer to 'raw' LED strip data
clearBuf   = bytearray([0xFF, 0, 0, 0] * num_leds)
imgNum     = 0    # Index of currently-active image
duration   = 2.0  # Image paint time, in seconds
filename   = None # List of image files (nothing loaded yet)
lightpaint = None # LightPaint object for currently-active image (none yet)

# If a mouse is plugged in, set up epoll for sensing position
if os.path.exists(mousefile):
	dev = InputDevice(eventfile)
	# Register mouse descriptor with epoll
	epoll = select.epoll()
	epoll.register(dev.fileno(), select.EPOLLIN)
	print 'Using mouse for positional input'

开发者ID:adafruit,项目名称:DotStarPiPainter,代码行数:31,代码来源:DotStarPiPainter.py


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