We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31959c3 commit d914e0cCopy full SHA for d914e0c
libraries/Arduino_LED_Matrix/examples/TextWithArduinoGraphics/TextWithArduinoGraphics.ino
@@ -8,15 +8,16 @@ void setup() {
8
Serial.begin(115200);
9
matrix.begin();
10
11
+ matrix.textScrollSpeed(50);
12
+
13
matrix.beginDraw();
14
matrix.stroke(0xFFFFFFFF);
- // add some static text
- // will only show "UNO" (not enough space on the display)
15
16
const char text[] = "UNO r4";
17
matrix.textFont(Font_4x6);
18
matrix.beginText(0, 1, 0xFFFFFF);
19
matrix.println(text);
- matrix.endText();
20
+ matrix.endText(SCROLL_LEFT);
21
22
matrix.endDraw();
23
0 commit comments