@Aaron_Liddiment
I am having a bit of difficulty with your sprite program again, I made a side shield of led’s for my brothers helmet, and i wanted to do some animations on it. it is 3 wide by 8 tall in a vertical zigzag. I have tried messing about with the different variables but cant seem to get it to do anything that resembles what i am looking for. should it be layed out like so?
B8_1BIT(101),
B8_1BIT(010),
B8_1BIT(101),
B8_1BIT(010),
B8_1BIT(101),
B8_1BIT(010),
And i suppose the same question would apply for the 8x36 matrix I had made for him, it is 36 tall by 8 wide would the sprite pattern be laid out in a similar fashion
E.G.
B8_3BIT(00000000),
B8_3BIT(00000000),
B8_3BIT(00000000),
B8_3BIT(00000000),
B8_3BIT(00000000),
B8_3BIT(00000000),
B8_3BIT(00000000),
B8_3BIT(00000000),
B8_3BIT(00000000),
B8_3BIT(00000000),
B8_3BIT(00000000),
B8_3BIT(00000000),
B8_3BIT(00000000),
B8_3BIT(00000000),
B8_3BIT(00000000),
B8_3BIT(00111100),
B8_3BIT(01111110),
B8_3BIT(11111111),
B8_3BIT(11211211),
B8_3BIT(12322321),
B8_3BIT(12322321),
B8_3BIT(11211211),
B8_3BIT(11111111),
B8_3BIT(11111111),
B8_3BIT(11111111),
B8_3BIT(11111111),
B8_3BIT(11111111),
B8_3BIT(12111121),
B8_3BIT(11222211),
B8_3BIT(11111111),
B8_3BIT(11111111),
B8_3BIT(01111110),
B8_3BIT(00111100),
B8_3BIT(00000000),
B8_3BIT(00000000),
B8_3BIT(00000000),
???