So i believe the code and wiring I am using from ElsniWiki : Arduino Led Matrix is for a common cathode matrix.. but I have a common anode(or opposite of whatever they have)... the code example there is the best example I have been able to find for LED matrix scrolling etc but my issue is since my matrix is opposite wiring the rows/cols are mirrored effectively turning and mirroring the text ect. I have tried everything I can think of to rectify this issue with no result.. can someone tell me how to modify the code(located in the cpp file on that page) to make my matrix appear correctly without having to modify every single character they have already defined? or perhaps even an easy way to swap the characters to give a better idea of my issue this is a lowercase "h" from that code...
// -------- h
0b00011110,
0b00100000,
0b00100000,
0b11111110,
this is what I would need to change it to to display on my matrix(still rotated 90 degrees tho which isn't ideal but passable)
// -------- h
0b01111111,
0b00000100,
0b00000100,
0b01111000,
so the word the is showing up as
instead of
I am also open to another library that does it better etc and I do have the Matrix they use in that page and it works flawless but I wanted a larger one and when i ordered them they are the opposite wiring( my bad)
also worth mentioning is the AS1106/1107 is a clone of Max7219