PX1 proagram question

I can only get my PX1 to run 50 pixels. I am pretty sure the problem is here:


#DEFINE GROUP_SIZE 1

#DEFINE GROUP_COUNT 50

These seem to be backwards. I would think the size would be 50 and the count would be the number of groups. If I change the GROUP_SIZE to 4 will it run 4 strings of 50 connected together? Thanks
 
Of course i find it in the wiki (after looking before posting). Size isn't used yet, count is total number of pixels attached.
 
Those settings allow you to create a "logical" pixel out of N consecutive pixels. Think of the GROUP size as "The number of times I will repeat a single pixels data". The Group Count is how many Logical Pixels you are supporting. So you can take a string of 50 pixels and turn it into a logical string of 5 pixels that have ten lights in each pixel.

For general use, a string of 100 pixels would be size = 1 and count = 100.
 
Back
Top