androdlang / InfoTicker

Scrolling text library for the SSD1306 display / Arduino
9 stars 5 forks source link

JLInfoTicker

Smooth scrolling text library for the SSD1306 display / Arduino. With this library you can display a horizontal scrolling textline on your SSD1306 display. The scrolling text will appear either on top or bottom of your display. There is no restriction about the length of the textline, this is especially useful for displaying live messages such as feeds or measurement data.

I've written this library for the Wemos LOLIN32 board, which uses an ESP32 with a SSD1306 OLED display. GitHub Logo

For a live view, see https://youtu.be/L9V65wh85Yk

Features

String abc[]={"Text line AAA", "Text line BBB","Text line CCC,"Text line DDD"};

infoTicker.init(& display,Monospaced_plain_12,[](int nr){int n=nr%4;return abc[n];});

Example

See the file InfoTickerTest.inoin the examples folder.