本文整理汇总了Python中sense_hat.SenseHat.gamma_reset方法的典型用法代码示例。如果您正苦于以下问题:Python SenseHat.gamma_reset方法的具体用法?Python SenseHat.gamma_reset怎么用?Python SenseHat.gamma_reset使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sense_hat.SenseHat
的用法示例。
在下文中一共展示了SenseHat.gamma_reset方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: input
# 需要导入模块: from sense_hat import SenseHat [as 别名]
# 或者: from sense_hat.SenseHat import gamma_reset [as 别名]
i, j = 0, 0
r, g, b = 0, 0, 0
while True:
c = input('> ')
if c == 'x': break
## if c == 'r': color = red
## if c == 'g': color = green
## if c == 'b': color = blue
## if c == 'y': color = yellow
## if c == 'c': color = cyan
## if c == 'm': color = magenta
## if c == 'w': color = white
## if c == '4' and i < 6: i += 1
## if c == '1' and i > 0: i -= 1
## if c == '6' and j < 6: j += 1
## if c == '3' and j > 0: j -= 1
if c == 'a' and r < 31: r += 1
if c == 'q' and r > 0: r -= 1
if c == 'z' and g < 31: g += 1
if c == 's' and g > 0: g -= 1
if c == 'e' and b < 31: b += 1
if c == 'd' and b > 0: b -= 1
print(r, g, b)
sense.set_pixels(pixels(r, g, b))
sense.clear()
sense.gamma_reset()
except:
SenseHat().clear()
SenseHat().gamma_reset()
raise