pyluxafor ========= Helper interface and CLI to interact with [luxafor](https://luxafor.com) products. ## Usage ``` python from luxafor import luxafor lux = luxafor.Luxafor() # Led types luxafor.Leds.ALL luxafor.Leds.FRONT luxafor.Leds.BACK luxafor.Leds.LEDn # Where n is a number from 1 to 6, refer to the class # Set a basic color # From: off, yellow, green, blue, magenta, cyan, red, white lux.set_basic_color('green') # Set a static color lux.set_color(, , , ) # Fade to a color lux.fade(, , , , ) # Strobe lux.strobe(, , , , , ) # Wave # Wave types: # 1: Short wave # 2: Long wave # 3: Overlapping short wave # 4: Overlapping long wave lux.wave(, , , , , , ) # Enable predefined pattern # Patterns from 1 to 8 lux.pattern(, ) # Turn off the luxafor lux.turn_off() ```