-
Notifications
You must be signed in to change notification settings - Fork 0
/
three_bit_test.py
150 lines (130 loc) · 4.86 KB
/
three_bit_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
import time
import math
import random
import ftdi1 as ftdi
import Adafruit_GPIO as GPIO
import Adafruit_GPIO.FT232H as FT232H
NEOPIXEL_HIGH8 = 0b11111000
NEOPIXEL_LOW8 = 0b11100000
NEOPIXEL_HIGH3 = 0b110
NEOPIXEL_LOW3 = 0b100
BYTES_PER_PIXEL = 3
SPI_BAUD = 2400000
#BYTES_PER_PIXEL = 24
#SPI_BAUD = 6000000
class NeoPixel_FT232H(object):
def __init__(self, num_pixels, num_rows):
# Create an FT232H object.
self.ft232h = FT232H.FT232H()
# Create a SPI interface for the FT232H object. Set the SPI bus to 6mhz.
self.spi = FT232H.SPI(self.ft232h, max_speed_hz=SPI_BAUD)
# Create a pixel data buffer and lookup table.
self.buffer = bytearray(num_pixels*BYTES_PER_PIXEL*3)
self.lookup = self.build_byte_lookup()
#print self.lookup
self.set_brightness(25) #set brightness to 25% by default
self.num_pixels = num_pixels
self.rows = num_rows
self.cols = num_pixels/num_rows
def build_byte_lookup(self):
# Create a lookup table to map all byte values to 8 byte values which
# represent the 6mhz SPI data to generate the NeoPixel signal for the
# specified byte.
lookup = {}
for i in range(256):
value = bytearray()
fullint = 0x00
#for j in range(7, -1, -1):
# value.append(NEOPIXEL_LOW8 if (((i >> j) & 1) == 0) else NEOPIXEL_HIGH8)
for j in range(7, -1, -1):
signal = NEOPIXEL_LOW3 if (((i >> j) & 1) == 0) else NEOPIXEL_HIGH3
fullint = fullint | signal
fullint = fullint << 3
fullint = fullint >> 3
#print("{0:b}".format(fullint))
#grab 1 byte at a time and place into the lookup table
for k in range(2, -1, -1):
val = (fullint & (0xFF << 8*k)) >> (8*k)
#print("{0:b}".format(val))
value.append(val)
lookup[i] = value
return lookup
def clear_pixels(self):
for row in range(self.rows):
for col in range(self.cols):
color = {'red':0,'green':0,'blue':0}
pixels.set_pixelRC(row+1,col+1,color)
pixels.show()
def set_pixel_color(self, n, r, g, b):
# Set the pixel RGB color for the pixel at position n.
# Assumes GRB NeoPixel color ordering, but it's easy to change below.
index = n*BYTES_PER_PIXEL*3
self.buffer[index :index+ BYTES_PER_PIXEL] = self.lookup[int(g*self.bright)]
self.buffer[index+ BYTES_PER_PIXEL :index+2*BYTES_PER_PIXEL] = self.lookup[int(r*self.bright)]
self.buffer[index+2*BYTES_PER_PIXEL :index+3*BYTES_PER_PIXEL] = self.lookup[int(b*self.bright)]
def set_pixelRC(self, row, col, color):
# Set the pixel RGB color for the pixel at position n.
# Assumes GRB NeoPixel color ordering, but it's easy to change below.
rowOffset = (row if col%2 == 1 else (self.rows+1 - row)) - 1
colOffset = (col-1)*self.rows
n = rowOffset + colOffset
self.set_pixel_color(n,color['red'],color['green'],color['blue'])
def set_brightness(self, brightpcent):
self.bright = math.pow(brightpcent/100.0,2.2)
def show(self):
# Send the pixel buffer out the SPI data output pin (D1) as a NeoPixel
# signal.
self.spi.write(self.buffer)
# Run this code when the script is called at the command line:
if __name__ == '__main__':
# Define the number of pixels in the NeoPixel strip.
# Only up to ~340 pixels can be written using the FT232H.
# Create a NeoPixel_FT232H object.
pixels = NeoPixel_FT232H(256,8)
pixels.set_brightness(25)
delay = 0.05
# Animate each pixel turning red.
# Loop through each pixel.
print 'Total pixels: {0}, Rows: {1}, Columns: {2}'.format(pixels.num_pixels,pixels.rows,pixels.cols)
pixels.clear_pixels()
time.sleep(delay)
while(1):
for row in range(pixels.rows):
for col in range(pixels.cols):
color = {'red':255,'green':0,'blue':0}
pixels.set_pixelRC(row+1,col+1,color)
pixels.show()
time.sleep(delay)
for row in range(pixels.rows):
for col in range(pixels.cols):
color = {'red':0,'green':255,'blue':0}
pixels.set_pixelRC(row+1,col+1,color)
pixels.show()
time.sleep(delay)
for row in range(pixels.rows):
for col in range(pixels.cols):
color = {'red':0,'green':0,'blue':255}
pixels.set_pixelRC(row+1,col+1,color)
pixels.show()
time.sleep(delay)
for row in range(pixels.rows):
for col in range(pixels.cols):
color = {'red':random.randint(0,255),'green':random.randint(0,255),'blue':random.randint(0,255)}
pixels.set_pixelRC(row+1,col+1,color)
pixels.show()
time.sleep(delay)
## Animate a pattern of colors marching around the pixels.
## Create a pattern of colors to display.
#colors = [ (255, 0, 0), (255, 255, 0), (0, 255, 0), (0, 255, 255),
# (0, 0, 255), (255, 0, 255) ]
#offset = 0
#print 'Press Ctrl-C to quit.'
#while True:
# # Loop through all the pixels and set their color based on the pattern.
# for i in range(pixels.num_pixels):
# color = colors[(i+offset)%len(colors)]
# pixels.set_pixel_color(i, color[0], color[1], color[2])
# pixels.show()
# # Increase the offset to make the colors change position.
# offset += 1
# time.sleep(delay)