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


Python SenseHat.gamma_reset方法代码示例

本文整理汇总了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
开发者ID:svenzin,项目名称:iss-py,代码行数:32,代码来源:color.py


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