Skip to main content

Questions tagged [neopixel]

The WS2812 Integrated Light Source from Adafruit.

Filter by
Sorted by
Tagged with
0 votes
1 answer
194 views

I'm attempting to control one of these UCS2904 floodlights using the Neopixel library; according to the chip documentation it uses 800khz and RGBW ordering, both of which are set in my Arduino code ...
Marcatectura's user avatar
1 vote
1 answer
716 views

In the code below which is running on a WEMOS D1 (ESP8266), a NeoPixel strip turns on 1 LED in red which moves left to right and then right to left whilst the board attempts to connect to Wi-Fi in the ...
Lachlan Etherton's user avatar
-1 votes
1 answer
249 views

I have a sketch that calculates simple distance from the device to the nearest preset GPS coordinate (there are 3 in total) and I would like to have LEDs in the neopixel strip light up according to ...
Varonne's user avatar
  • 89
0 votes
1 answer
3k views

I am working on a led strip project and was looking for ways to smooth transition from color to another. Problem is my current method is not so good. #include <Adafruit_NeoPixel.h> #define ...
DrakeJest's user avatar
  • 229
0 votes
1 answer
349 views

So I made a post yesterday running into an issue on my ESP32 using both cores on the microcontroller (with wifi enabled, incase that is important). I'm using both cores to control two Neopixel strips ...
Jay's user avatar
  • 135
1 vote
0 answers
352 views

i'm making a device that's kind of based on Russian roulette. I have 5 LED's that are normally white, and when you press the button one of the LED's is marked red. After some tinkering I figured out ...
Hans's user avatar
  • 11
0 votes
5 answers
633 views

UPDATE Clock speed code has been tweaked as per the suggestion from @timemage due to inability for Wire library to reduce to below 30304Hz. Unfortunately problems still persist: Nothing printed out to ...
user2105725's user avatar
0 votes
1 answer
1k views

I bought some individually addressable LED strips (a large reel). To keep the cost down they are WS2811 and it's one chip per 6 leds. I don't know the cheapness or LED styl makes any difference to the ...
DreamingInsanity's user avatar
1 vote
1 answer
615 views

Hi everyone I have an issue with getting these LEDs to cooperate. I'm using a 470ohm resistor on the data port and a capacitor for the power. I complied and uploaded the "strandtest"(I ...
Alex 's user avatar
  • 11
0 votes
0 answers
331 views

I am trying to use WS2812B LEDs with an Arduino. I have 24 LEDs connected to pin 6. When I first received the strip I connected it to 12V and data. Using the cyclone example in the FastLED library ...
VOID seekers's user avatar
1 vote
0 answers
286 views

I am using atmega 2560 to control 590 LED lights with NeoPixels library. I also got an IR receiver connected so I could control the LED properties and it does work but only when the LEDs are not ...
user1031204's user avatar
0 votes
1 answer
1k views

I'm trying to create a function that takes two colours and creates a smooth gradient between them one colour at the beginning and one at the end I just can't figure the math of mixing them evenly I'...
Shiba-inu's user avatar
0 votes
1 answer
715 views

I am relatively new to Arduino and I am trying to code some neo pixels and every time I try to verify my code this error comes up: Arduino: 1.8.12 (Mac OS X), Board: "Arduino Uno" loading ...
Erin Shankland's user avatar
1 vote
0 answers
440 views

Build my own 'Artnet to WS2812b Neopixel' boxes for lighting in a club. Working fine. I have 20 stripes with 50 pxls each. One ESP8266(NodeMCU) is feeding 6 stripes, so it gets 2 DMX universes via ...
Martin Bepunkt's user avatar
-1 votes
1 answer
430 views

I have connected a single neopixel to my Adafruit Feather board, running Arduino software. The power pin is connected to 3V on the Feather. The data-in pin is connected to pin 15 on the Feather. As ...
Kokodoko's user avatar
  • 161
0 votes
2 answers
180 views

I am creating a 20x15 LED Matrix using and Arduino Nano. My goal is to switch between different "scenes," if you will, using 4 buttons (I just need to run different code to make it display something ...
Micah Wagoner's user avatar
2 votes
2 answers
915 views

I've got a 50k potentiometer connected to an Arduino Uno. The user should adjust the hue of an Adafruit NeoPixelStrip. I've got the following code inside the loop function: int hue = analogRead(...
WalterBeiter's user avatar
0 votes
1 answer
855 views

I wish to blink all the strip. In the code below it just blink the first LED, how can I fix it? Code: #include <Adafruit_NeoPixel.h> #define PIN 6 #define NUM_LEDS 24 Adafruit_NeoPixel strip = ...
dkin's user avatar
  • 29
2 votes
1 answer
562 views

My goal - run light sequence function on momentary button press (button 2) continuously until another of the 3 momentary buttons are pressed. /* switch * * Each time the input pin goes ...
MorningStar's user avatar
0 votes
1 answer
162 views

I'm working on a project that is running off of a Sparkfun Pro Micro 5V. I'm trying to accomplish a color rainbow cycle animation which will have a function when triggered to fade the rainbow to black ...
William's user avatar
  • 103
1 vote
0 answers
172 views

I'm trying to use a 4x3 matrix keypad as a user interface to control parameters of a Neopixel strip control program. I'm using Adafruit's Neopixel library and This Keypad library. Both work fine on ...
CristoXeuari's user avatar
0 votes
1 answer
108 views

I'm writing a library for a project i created, but it depends on the Neopixel library from adafruit. I want to remove this dependency and have my library be a stand-alone library. Is there a way to ...
rcpilotp51's user avatar
2 votes
4 answers
4k views

I am trying too hook up a WS2812B LED strip to an Arduino Nano. The current strip consists of 6 pixels, and the whole thing is powered by a 5.26 V PC power supply. The problem is that the first pixel ...
Bart B's user avatar
  • 41
3 votes
1 answer
549 views

I am working on a project where a rotary encoder is generating 0 - 359° output and I am feeding that to a 60 Neopixel ring but I need a way to simplify or come up with a better way of a bunch of if-...
Bkukuk62's user avatar
0 votes
2 answers
821 views

I've been working on an LED strip project. However, I've come to a stand still at the moment. Within the program I am wanting to assign different lighting effects to each button on my IR remote. I am ...
YaBo11's user avatar
  • 1