From 46f38c12aea8c6d9dff35c0ba7c1ccc167ec7704 Mon Sep 17 00:00:00 2001 From: Olivier Forabosco Date: Tue, 22 Jun 2021 07:22:24 +0000 Subject: [PATCH] =?UTF-8?q?Code=20d=C3=A9taill=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Programme_finalDMXLED.ino | 108 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 Programme_finalDMXLED.ino diff --git a/Programme_finalDMXLED.ino b/Programme_finalDMXLED.ino new file mode 100644 index 0000000..c416552 --- /dev/null +++ b/Programme_finalDMXLED.ino @@ -0,0 +1,108 @@ +#include +#include "Switch.h" +#include +#define N 5 +const byte button1pin=0; +const byte button2pin=1; +const byte button3pin=2; +const byte button4pin=3; +const byte button5pin=4; + +Switch button1 = Switch(button1pin,INPUT_PULLUP); +Switch button2 = Switch(button2pin,INPUT_PULLUP); +Switch button3 = Switch(button3pin,INPUT_PULLUP); +Switch button4 = Switch(button4pin,INPUT_PULLUP); +Switch button5 = Switch(button5pin,INPUT_PULLUP); + + + +#define PIXEL_COUNT 7 // On définit le nombre de LED compris sur le Ruban de LED soit 150 pour le ruban de 5m50 +#define PIXEL_PIN 6 +Adafruit_NeoPixel strip = Adafruit_NeoPixel(PIXEL_COUNT, PIXEL_PIN, NEO_GRB + NEO_KHZ800); // Paramètre l'objet strip qui correspond à toute les LED du ruban + +void setup() { + + DmxSimple.usePin(5); + DmxSimple.write(1,50); + + +strip.begin(); // Lance la connection +strip.show(); // Initialise toute les led à 'off' +Serial.begin(9600); + +strip.setBrightness(100); + + +} +int RED[3] = {255, 0, 0}; // Couleur Rouge +int GREEN[3] = {0, 255, 0}; // Couleur Verte + int CYAN[3] = {0, 255, 255}; // Couleur Cyan +int YELLOW[3] = {255, 125, 0}; // Couleur Jaune +int ORANGE[3] = {255, 40, 0}; // Couleur Orange +int PURPLE[3] = {255, 0 , 255}; // Couleur Violette +int PINK[3] = {255, 0, 100}; // Couleur Rose +int BLUE[3] = {0, 0, 255}; // Couleur Bleu +int WHITE[3] = {255, 255, 255}; // Couleur Blanche +int OFF[3] = {0, 0, 0}; // Éteint + +void allLeds(int COLOR[]) +{ +for(int i = 0 ; i < PIXEL_COUNT ; i++) +{ +strip.setPixelColor(i, COLOR[0], COLOR[1], COLOR[2]); +} +strip.show(); +} + +void loop() { + int i; + button5.poll(); + if(button5.on()){ +button1.poll(); +if (button1.switched()) {allLeds(RED); +DmxSimple.write(2,255); +DmxSimple.write(3,0); +DmxSimple.write(4,0);} +button2.poll(); +if (button2.switched()) {allLeds(GREEN); +DmxSimple.write(2,0); +DmxSimple.write(3,255); +DmxSimple.write(4,0);} +button3.poll(); +if (button3.switched()) {allLeds(PURPLE); +DmxSimple.write(2,255); +DmxSimple.write(3,0); +DmxSimple.write(4,255);} +button4.poll(); +if (button4.switched()) {allLeds(CYAN); +DmxSimple.write(2,0); +DmxSimple.write(3,255); +DmxSimple.write(4,255);} + }else { + button1.poll(); +if (button1.switched()) {allLeds(PINK); +DmxSimple.write(2,255); +DmxSimple.write(3,0); +DmxSimple.write(4,100);} +button2.poll(); +if (button2.switched()) {allLeds(YELLOW); +DmxSimple.write(2,255); +DmxSimple.write(3,125); +DmxSimple.write(4,0);} +button3.poll(); +if (button3.switched()){ allLeds(WHITE); +DmxSimple.write(2,255); +DmxSimple.write(3,255); +DmxSimple.write(4,255);} +button4.poll(); +if (button4.switched()) {allLeds(BLUE); +DmxSimple.write(2,0); +DmxSimple.write(3,0); +DmxSimple.write(4,255);} + } + + + + + +}