Description
La matrice 8×8 avec 64 LED WS2812 5050 RGB est un excellent choix pour vos projets Arduino.
- Type de LED : WS2812B, chaque LED est individuellement adressable.
- Dimensions : 65 x 65 mm.
- Tension : 5V DC.
- Interface : E/S avec des connecteurs 3 broches pour l’entrée et la sortie.
- Couleur : RGB, chaque LED peut afficher 24 bits de couleur.
Utilisation avec Arduino
Pour utiliser cette matrice avec Arduino, vous aurez besoin de la bibliothèque FastLED. Voici un exemple de code pour démarrer :
#include <FastLED.h>
#define NUM_LEDS 64
#define DATA_PIN 6
CRGB leds[NUM_LEDS];
void setup() {
FastLED.addLeds<WS2812, DATA_PIN, GRB>(leds, NUM_LEDS);
}
void loop() {
for(int i = 0; i < NUM_LEDS; i++) {
leds[i] = CRGB::Red; // Change color as needed
FastLED.show();
delay(100);
leds[i] = CRGB::Black;
}
}
Connexion
- DIN (entrée) de la matrice à la broche D6 de l’Arduino.
- GND de la matrice à GND de l’Arduino.
- 5V de la matrice à une alimentation 5V.