Notifications
Clear all
Topic starter
16/12/2019 11:32 pm
What would the code be to flip the 8x8 Matrix lettering or is it possible? By flipping, I would like it to be upside down, therefore when placing it with wiring up in a custom made case the lettering would be right side up. 🤣 Yes, I made the housing for the wiresΒ and chip to go up, not down. 🙄Β
Topic starter
17/12/2019 12:37 am
Basically, is it as simple as flipping this type of array? I know this is for the gears, but somewhere it has to tell where it starts and ends?
0b10100001, // 0
0b00101000, // 1
0b11001101, // 2
0b01101101, // 3
0b00101011, // 4
0b01100111, // 5
0b11100111, // 6
0b00101100, // 7
0b01111111, // 8
0b01111111, // 9
This post was modified 5 years ago by kipnlo
Topic starter
17/12/2019 12:48 am
I think I found where to change it. Is this it?
MAX7221.setRow(0, 7 - j, FlowSerialTimedRead());
17/12/2019 8:44 am
Hi !Β
It's supported out of boxΒ for any rotation which could be required π
Β
Nicolas
Topic starter
17/12/2019 4:12 pm
Wow, speaking of out of the box. I was thinking way out of it! 😂 Thank you!