#include "ScrollingText8x8Display.h"
// library to enable us to easily scroll text within 8x8
// instead of individually creating a matric for each letter
ScrollingText8x8Display render;
void setup()
{
// pin setup
byte displayRowPins[] = {A3, A2, 13, 12, 11, 10, 9, 8};
byte displayColumnPins[] = {7, 6, 5, 4, 3, 2, A0, A1};
// initialising scrolling direction and what to load
ScrollingDirection scrollingDirection = RIGHT_TO_LEFT;
CharacterOrientation characterOrientation = TOP;
render.init(displayRowPins, displayColumnPins, scrollingDirection, characterOrientation);
}
void loop()
{
String name="SACHEEN";
float scrollingSpeed = 35;
render.displayText(name, scrollingSpeed);
}