adafruit / Adafruit_SHARP_Memory_Display

This is an Arduino library for the Adafruit Monochrome SHARP Memory Displays
http://www.adafruit.com/products/1393
Other
60 stars 54 forks source link

Recent changes result in screen rotation of 180 degrees. #3

Closed howtokap closed 4 years ago

howtokap commented 9 years ago

The begin() method, Adafruit_SharpMem::begin(), contains the statement setRotation(2). This seemingly arbitrary statement had no effect originally, though, because rotation wasn't supported in drawPixel(). The recent changes to add this support, though, have caused the display on my project to undergo 180 degrees of rotation after updating this library.

Can we remove the setRotation(2) from begin(), perhaps?

I will be adding a setRotation(0) in my own code, regardless, as a workaround.