Mateya oyo ezali eteni ya: ESP32-S3 Matrice ya LED RGB
Projet cool pona ko créer pona ba applications ya esengo pe ya pratique en utilisant module ESP32-S3 RGB Matrix. Ba liens ya ba vidéos misusu ezali na se ya article oyo.
ESP32-S3 RGB LED Matrix test for RGB, GRB setting



Mateya oyo ezali eteni ya: ESP32-S3 Matrice ya LED RGB
- Projet ESP32-S3 Matrice LED RVB 1- Point de base
- Projet ESP32-S3 Matrice LED RVB 2 - Texte défilant
- Mokano ya ESP32-S3 RGB LED Matrix Projɛ́ 3 - Mokanda na phone ya mbɔ́kɔ
- Mpɔ́ngɔ́ ya ESP32-S3 RGB LED Matrix 4 - Tilt dot
- Projet ESP32-S3 Matrice LED RVB 5 - Flèche toujours vers le haut
- Projet ESP32-S3 Matrice LED RVB 6 - Jeu Cible
- Mokano ya ESP32-S3 RGB LED Matrix Wi-Fi + NTP Time Clock -1 Saa ya Liboso
- Projet Horloge Internet à Matrice LED RGB ESP32-S3 - Affichage de l'Heure et de la Date en 2 Horloges Multicolores
- Projet ya Saa ya Intanɛti ya ESP32-S3 RGB LED Matrix - 3 Langi ya Butú elongo na Mokolo
- Projet ya Monganga ya Internet ya ESP32-S3 RGB LED Matrix - 5 Loni ya Rainbow
- Mosala ya ESP32-S3 RGB LED Matrix Internet Clock - Loni ya balabala ya 4
871-ESP32-S3 RGB LED Matrix test for RGB, GRB setting
Langue: C++
/*
* =====================================================================================
* 8x8 RGB MATRIX - COLOR ORDER TESTER
📚⬇️ Download and resource page https://robojax.com/RJT841
Full youTube video: https://youtu.be/XEZLyznWmYM
* =====================================================================================
* This script helps you verify if your matrix matches the 'NEO_RGB' setting.
* - Displays 'R' in Red
* - Displays 'G' in Green
* - Displays 'B' in Blue
* * If 'R' shows up as Green or Blue, you need to change the configuration line:
* e.g., NEO_GRB + NEO_KHZ800 OR NEO_RGB + NEO_KHZ800
* =====================================================================================
*/
#include <Adafruit_GFX.h>
#include <Adafruit_NeoMatrix.h>
#include <Adafruit_NeoPixel.h>
#define MATRIX_PIN 14
// --- USER SETTINGS ---
const int TEST_DELAY = 2000; // Time in milliseconds between colors
const int TEST_BRIGHTNESS = 30; // Set brightness (0 to 255)
// Define the matrix - change NEO_RGB to NEO_GRB if colors are swapped
Adafruit_NeoMatrix matrix(8, 8, MATRIX_PIN,
NEO_MATRIX_TOP + NEO_MATRIX_LEFT +
NEO_MATRIX_ROWS + NEO_MATRIX_PROGRESSIVE,
NEO_RGB + NEO_KHZ800);
void setup() {
matrix.begin();
matrix.setTextWrap(false);
matrix.setBrightness(TEST_BRIGHTNESS);
}
void loop() {
// 1. TEST RED
matrix.fillScreen(0);
matrix.setTextColor(matrix.Color(255, 0, 0)); // Red
matrix.setCursor(1, 0);
matrix.print("R");
matrix.show();
delay(TEST_DELAY);
// 2. TEST GREEN
matrix.fillScreen(0);
matrix.setTextColor(matrix.Color(0, 255, 0)); // Green
matrix.setCursor(1, 0);
matrix.print("G");
matrix.show();
delay(TEST_DELAY);
// 3. TEST BLUE
matrix.fillScreen(0);
matrix.setTextColor(matrix.Color(0, 0, 255)); // Blue
matrix.setCursor(1, 0);
matrix.print("B");
matrix.show();
delay(TEST_DELAY);
}
Nko o na nki.
-
Amazon
-
eBay
-
AliExpressPurchase ESP32-S3 RGB matrix from AliExpresss.click.aliexpress.com
-
AliExpressPurchase ESP32-S3 RGB matrix from AliExpress (2)s.click.aliexpress.com
Mokili na bisika
-
Interno🎨 Color picker Toolrobojax.com
Fichiers📁
Fritzing File
-
esp32-S3-supermini-tht fritzing part
esp32-S3-supermini-tht.fzpz0.02 MB