Exemplo n.º 1
0
import time

from openwestkit import OpenWestKit


# signal handler that resets the board when ctrl-c is pressed
def handleSignal(signal, frame):
    openwestkit.reset()
    sys.exit(0)


signal.signal(signal.SIGINT, handleSignal)

openwestkit = OpenWestKit()

openwestkit.reset()
brightness = 65
while (1):
    openwestkit.brightness(brightness)
    time.sleep(1)

    for code in openwestkit.readData():
        if code == 'a':
            brightness -= 5
        elif code == 'b':
            brightness += 5

    # max
    if brightness > 255:
        brightness = 255
    # min
Exemplo n.º 2
0
import sys
import time

from openwestkit import OpenWestKit


# signal handler that resets the board when ctrl-c is pressed
def handleSignal(signal, frame):
    openwestkit.reset()
    sys.exit(0)

signal.signal(signal.SIGINT, handleSignal)

openwestkit = OpenWestKit()

openwestkit.reset()
brightness = 65
while(1):
    openwestkit.brightness(brightness)
    time.sleep(1)

    for code in openwestkit.readData():
        if code == 'a':
            brightness -= 5
        elif code == 'b':
            brightness += 5

    # max
    if brightness > 255:
        brightness = 255
    # min