sparkfun / SparkFun_Micro_OLED_Arduino_Library

Arduino library for the SparkFun Micro OLED - a breakout board for a monochrome, 0.66", 64x48 OLED display.
Other
83 stars 60 forks source link

Missing scrolling functions in .cpp #24

Closed halveez closed 3 years ago

halveez commented 4 years ago

I believe the cpp file is missing the definitions of the following scrolling functions:

void scrollLeft(uint8_t start, uint8_t stop);
void scrollVertRight(uint8_t start, uint8_t stop);
void scrollVertLeft(uint8_t start, uint8_t stop);

scrollRight and scrollStop appear to be the only scrolling functions that are present in the cpp file.

halveez commented 4 years ago

The reference link above the right scrolling functions appears to be dead as well:

http://learn.microview.io/intro/general-overview-of-microview.html

PaulZC commented 3 years ago

Hi @halveez , Thanks for spotting this issue - and apologies for the slow reply! We've added the missing functions in version 1.2.10 and - as a bonus - you can now set the scroll interval too. Best wishes, Paul

halveez commented 3 years ago

Thanks Paul!