bibliotheek
TODO esto es un apaño del apaño para pintar algo, se puede mejorar mucho,
Quieres si ya sabes mandanos un correo hola o clona y pull-recquest
Pach de Arduinio para el control de una pantalla de leidde de adafruit
sobre la bibliotheek Adafruit RGBmatrixPanel.
#include / / bibliotheek grafica hoofdsom
#include / / bibliotheek del hardgare espeficifo
Relación de pinnen del arduino a la pantalla
#define CLK 8
#define LAT A3
#define OE 9
#define een A0
#define B A1
#define C A2
int incomingByte = 0;
int buf = 0;
int x = 0;
int y = 0;
RGBmatrixPanel matrix (A, B, C, CLK, LAT, OE, false);
VOID Setup {}
Serial.begin(115200);
matrix.begin();
matrix.drawPixel (33, 24, matrix. Color333(7, y/2, x/2));
delay(500);
}
void loop {}
byte i;
int r;
int g;
int b;
String strx;
Tekenreeks stry;
String strr;
Tekenreeks strg;
String, strb;
Solucion vuil, dirty para separar lo que llega del puerto serie, esta mejorado nl una futura versie
if(Serial.available() > 0)
{
strx = Serial.readStringUntil('\n');
x = Serial.parseInt();
StrY = Serial.readStringUntil('\y');
y = Serial.parseInt();
strr = Serial.readStringUntil('\f');
r = Serial.parseInt();
Strg = Serial.readStringUntil('\\');
g = Serial.parseInt();
strB = Serial.readStringUntil('\b');
b = Serial.parseInt();
matrix.drawPixel (x, y, matrix. Color333(r, g, b));
}
}