micropython-max7219 icon indicating copy to clipboard operation
micropython-max7219 copied to clipboard

Rotate_180 error

Open trancio opened this issue 5 years ago • 1 comments

Hi,

I have a rotated max7219 display but rotate_180 = True does not work. The solution written at "Inverted display" was not good for me.

But it works for me:

offset = 8 * self.cols - row * (8 - line) * self.cols
index = (7 - line) * self.cols + col - offset

trancio avatar May 27 '19 18:05 trancio