Índice:

Idéia de projeto de arte inventiva DIY com luzes e som LED: 3 etapas
Idéia de projeto de arte inventiva DIY com luzes e som LED: 3 etapas
Anonim
Idéia de projeto de arte inventiva faça você mesmo com luzes e som LED
Idéia de projeto de arte inventiva faça você mesmo com luzes e som LED

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

Image
Image

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

Esquemático e Gerber
Esquemático e Gerber

Obtenha o quadro -

Etapa 3: Código Fonte

Código fonte
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 = 0; i--) {LED1color = CRGB:: Verde; FastLED.show (); LED1color = CRGB:: Preto; atraso (100); } myDFPlayer.pause (); } void LED2show () {myDFPlayer.play (2); para (int i = 0; i = 0; i--) {LED2color = CRGB:: Verde; FastLED.show (); LED2color = CRGB:: Preto; atraso (100); } myDFPlayer.pause (); } void LED3show () {myDFPlayer.play (3); para (int i = 0; i = 0; i--) {LED3color = CRGB:: Verde; FastLED.show (); LED3color = CRGB:: Preto; atraso (100); } myDFPlayer.pause (); }

Recomendado: