When P10 sends data to the left of the screen, the fixed texts on the right play. This may be the reason.
#include <DMD2.h>
#include <Fonts/Arial_Black_16.h>
SoftDMD dmd(3,1);
DMD_TextBox box(dmd, -1, 0, 96, 16);
void setup() {
dmd.setBrightness(100); // Set brightness 0 - 255
dmd.selectFont(Arial_Black_16); // Font used
dmd.begin(); // Start DMD
dmd.clearScreen();
Serial1.begin(9600); }
void loop() {
if (Serial1.available() >0) {
int inByte = Serial1.read();
box.print((char)inByte); }}
Does anyone have any ideas as to why? When you send data to the left, the fixed data on the right plays strangely.
b707
March 6, 2025, 11:54am
3
There is nothing in your code that able to print fixed text in the right.
Please show a full code
This much code, information is coming from the serial port. What more do you need?
b707
March 6, 2025, 12:12pm
5
bykz1351:
What more do you need?
Okay, please record a video starting from the start of the program, when there is nothing on the matrix yet. And until the moment when two-digit numbers appear on the left
system
Closed
September 2, 2025, 12:13pm
6
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.