#
# LED strip example
#

RowMajor # Memory layout
RGB      # Color type
8        # The number of X pixels
1        # The number of Y pixels
0        # Use the default LED size
50       # Frame delay = 50 * 10 mS = 500 mS
loop     # Loop mode

# First frame
  0,  0,  0
  0,  0,  0
  0,  0,  0
  0,  0,  0
  0,  0,  0
  0,  0,  0
  0,  0,  0
  0,  0,  0

# Second frame
255,255,255
255,  0,  0
255,255,  0
  0,255,  0
  0,255,255
  0,  0,255
255,  0,255
255,255,255
