From 7f41aaccf8f04be30af1f04ecbd68edcf2d73fbb Mon Sep 17 00:00:00 2001 From: Pierre GIMENEZ Date: Thu, 2 Nov 2023 17:03:36 +0100 Subject: [PATCH] =?UTF-8?q?T=C3=A9l=C3=A9verser=20les=20fichiers=20vers=20?= =?UTF-8?q?"/"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tuner30ans.ino | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 tuner30ans.ino diff --git a/tuner30ans.ino b/tuner30ans.ino new file mode 100644 index 0000000..f2afcb8 --- /dev/null +++ b/tuner30ans.ino @@ -0,0 +1,33 @@ +//Import the needed FastLED library +#include + +//These variables allow you to specify how the strip will behave +#define NUM_LEDS 12 //This number decides how many of the strip's LEDs the code will use +const int ledLength = 1; //This number decides how many LEDs will be turned on at once + +//Define and initiate global variables +CRGB leds[NUM_LEDS]; +#define DATA_PIN 16 +int sensorPin = 7; +int ledValue; +int sensorValue; + +void setup() { + // initiate the LED strip + FastLED.addLeds(leds, NUM_LEDS).setCorrection( TypicalLEDStrip ); +} + +void loop() { + //Read value from any sensor + sensorValue = analogRead(sensorPin); + + //Using the map function, we can take any sesor input and align it to a location on the LED strip + ledValue = map(sensorValue, 1023, 0, 0, NUM_LEDS); + + //Clear previous configuration + FastLED.clear(); + + //Set and turn on desired LED + leds[ledValue] = CRGB::White; + FastLED.show(); + }