2025 Autor: John Day | [email protected]. Última modificação: 2025-01-13 06:58
Neste vídeo, mostrarei como fazer um projeto de arte único em casa usando faixa de LED e som.
Etapa 1: Projeto de Vídeo
Faixa de LED -
MP3 Player -
Sensor infravermelho -
Microcontrolador -
Conector -
Adaptador -
Regulador de tensão -
Palestrante -
Micro SD -
Capacitor -
Resistor -
Chave de alternância -
Ferramentas de solda -
Etapa 2: Esquemático e Gerber
Obtenha o quadro -
Etapa 3: Código Fonte
Código-fonte:
#incluir
#include "SoftwareSerial.h" #include "DFRobotDFPlayerMini.h" #define NUM_LEDS_PER_STRIP 70 #define BRIGHTNESS 200 #define LED1pin 5 #define LED2pin 6 #define LED3pin 7 const int IR1pin = A0; const int IR2pin = A1; const int IR3pin = A2; CRGB LED1color [NUM_LEDS_PER_STRIP]; CRGB LED2color [NUM_LEDS_PER_STRIP]; CRGB LED3color [NUM_LEDS_PER_STRIP]; SoftwareSerial mySoftwareSerial (10, 11); // RX, TX DFRobotDFPlayerMini myDFPlayer; void printDetail (tipo uint8_t, valor int); void setup () {mySoftwareSerial.begin (9600); Serial.begin (115200); if (! myDFPlayer.begin (mySoftwareSerial)) {Serial.println (F ("Impossível começar:")); Serial.println (F ("1. Verifique novamente a conexão!")); Serial.println (F ("2. Insira o cartão SD!")); enquanto (verdadeiro); } pinMode (IR1pin, INPUT); pinMode (IR2pin, INPUT); pinMode (IR3pin, INPUT); myDFPlayer.volume (20); myDFPlayer. EQ (DFPLAYER_EQ_CLASSIC); myDFPlayer.outputDevice (DFPLAYER_DEVICE_SD); FastLED.addLeds (LED1color, NUM_LEDS_PER_STRIP); FastLED.addLeds (LED2color, NUM_LEDS_PER_STRIP); FastLED.addLeds (LED3color, NUM_LEDS_PER_STRIP); FastLED.setBrightness (BRIGHTNESS); } void loop () {if (digitalRead (IR1pin) == LOW) {LED1show (); } if (digitalRead (IR2pin) == LOW) {LED2show (); } if (digitalRead (IR3pin) == LOW) {LED3show (); }} void LED1show () {myDFPlayer.play (1); para (int i = 0; i