diff --git a/.travis.yml b/.travis.yml index dd88629..257f5bc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,6 +23,7 @@ deploy: install: - pip install pylint circuitpython-build-tools Sphinx sphinx-rtd-theme + - pip install --force-reinstall pylint==1.9.2 script: - pylint adafruit_circuitplayground/*.py diff --git a/examples/pixels_simpletest.py b/examples/pixels_simpletest.py index 8c7063f..c2af9ae 100644 --- a/examples/pixels_simpletest.py +++ b/examples/pixels_simpletest.py @@ -3,10 +3,10 @@ import time from adafruit_circuitplayground.express import cpx - # The number of pixels in the strip numpix = 10 + def wheel(pos): # Input a value 0 to 255 to get a color value. # The colours are a transition r - g - b - back to r. @@ -14,13 +14,13 @@ def wheel(pos): return (0, 0, 0) if pos < 85: return (int(pos * 3), int(255 - (pos*3)), 0) - elif pos < 170: + if pos < 170: pos -= 85 return (int(255 - pos*3), 0, int(pos*3)) - #else: pos -= 170 return (0, int(pos*3), int(255 - pos*3)) + def rainbow_cycle(wait): for j in range(255): for i in range(cpx.pixels.n): @@ -29,6 +29,7 @@ def rainbow_cycle(wait): cpx.pixels.show() time.sleep(wait) + cpx.pixels.auto_write = False cpx.pixels.brightness = 0.3 while True: