This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Based off of http://www.walltech.cc/neopixel-fire-effect/ for Arduino | |
# Works with Raspbian Stretch on the RPi3 | |
import time | |
from neopixel import * | |
import argparse | |
# LED strip configuration: | |
LED_COUNT = 220 # Number of LED pixels. |