本文整理汇总了Python中astro_pi.AstroPi.get_pixel方法的典型用法代码示例。如果您正苦于以下问题:Python AstroPi.get_pixel方法的具体用法?Python AstroPi.get_pixel怎么用?Python AstroPi.get_pixel使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类astro_pi.AstroPi
的用法示例。
在下文中一共展示了AstroPi.get_pixel方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: make_point
# 需要导入模块: from astro_pi import AstroPi [as 别名]
# 或者: from astro_pi.AstroPi import get_pixel [as 别名]
leftco = 1 # co-efficient for left movement, 1 for right, -1 for left
upco = 0 #co-efficient for the up movement, -1 for up and 1 for down
make_point()
start = time.time()
while running:
x =x + leftco
y = y + upco
#stop the game crashing when it gets to the end of the screen, this could be changed to make it go past and start on the other side
if(x < 0) : x = 0
if(x > 7) : x = 7
if(y < 0) : y = 0
if(y > 7) : y = 7
p = ap.get_pixel(x,y)
#debugging info as setting 0, 255, 255 did not work
#print p
'
#check if the point has been collected
if(p[0] == pr and p[1] == pg and p[2] == pb):
#its a point!
points = points + 1
speed = speed + 1 # increase speed
make_point() # make another point
ap.set_pixel(x,y,r,g,b)
time.sleep( float(1)/speed)
#check for events
for event in pygame.event.get():
if event.type == pygame.QUIT: