To clarify, the sketch runs on the wrover-b module but I don't see any data being written to the leds. Switch over to the esp32 wroom module and they light up. I don't have access to an oscilloscope so I'm not sure how to debug this
Marc Miller
@marmilicious
@drewandre I have only used the HiLetgo ESP-WROOM-32 ESP-32S. Try asking on the FastLED Reddit group as many more will see your question and hopefully someone there can help. http://fastled.io/r
Drew André
@drewandre
Sounds good. Thanks!
Leedan Johnson
@LeedanJohnson
Howdy all! Does anyone know if there is a way to force FastLED on an esp32 to use Software Spi instead of RMT. I think RMT is introducing some problems, but I would like to test without it to be sure.
Marc Miller
@marmilicious
Have you tried adding this line before the include line for the library?
define FASTLED_FORCE_SOFTWARE_SPI
include <FastLED.h>
I haven't tried it on ESP32. Let us know if that works.
Leedan Johnson
@LeedanJohnson
I have tried it, and am still experiencing the issue, but I honestly don't know how to tell which implementation is being used.
Marc Miller
@marmilicious
Ping the Reddit group, hopefully Sam there know's how it's working under the hood.
Drew André
@drewandre
When working with 8bit math for noise + palette style animations, I see a lot of harsh jumps between colors especially at low brightnesses. I know this has been discussed before, so what keywords/general topics should I try searching for? should I look for a noise16 implementation? or is it the ws2812b chipset? should I try to blur more or maybe use a combo of additive color setting + fade to black? any pointers would help!
Marc Miller
@marmilicious
@drewandre The harsh jumps when brightness is scaled down is a downside of working with 8bit. Something that had 64 steps for example, which is scaled down to 25% suddenly only has 16 steps. This is another good question/discussion for the Reddit group if you don't mind asking there.
vasan25
@vasan25
i developing free gui software to create pixel effect. Zero coding, just use effect video to auto create a effect txt file. tested with attiny85 8mhz total 1000 ws2812b. Since the output in txt file, then can put it in flash memory. RAM not a issue. Also can use for any arduino, raspberry Pi, or any microcontroller. I would like to integrate with fastled for auto generate the ino file together with the effect. i looking for mr. kriegsman the fastled creator
Marc Miller
@marmilicious
Sounds cool @vasan25 Please feel free to share what you are working on or questions about integrating things with the FastLED Reddit group. http://fastled.io/r
vasan25
@vasan25
@marmilicious i need little more time to fix the software. I will join FastLed reddit group soon. See u there...
They are 5 channel RGBCCT LEDs using a 12 channel RGB controller
notaUser
@Applepi
It appears it will be non-trival as the library doesn't support RGBW LEDs like the SK6812, at least from my cursory reading of the source.
Marc Miller
@marmilicious
@Applepi I see you opened an issue on git hub, thank you, it's good to document these support requests and have a place for future discussion there. You're right, it's non-trivial! Eventually adding support for more then three channels and other additions is part of the plan but there's no specifics of when that will happen at this time.
notaUser
@Applepi
So would the hacky solution for now to be to treat every other pixel as the 2nd color channel? Since the first RGB on the controller (might be RGB I'm not sure I don't have the LEDs yet) and the 2nd RGB LED as the two white channels ( WW CW and NC) or whatever variation that they are wired up.
notaUser
@Applepi
https://i.imgur.com/hcowuFW.png hard to tell from the images I can find of the strip but it doesn't look they are wired in an easy to parse manner :(
But just lloking at where the Red traces go, it doesn't match up with any possible route for RED pins on the TM1812
Sir Woody Hackswell
@Hackswell
In "fastpin.h", while compiling for STM32F4, using GCC 9.2.1, I had to change the following line:
I'm starting to look at issues related to the Teensy 4.x devices. Are people very active here on Gitter though?
Marc Miller
@marmilicious
@MartyMacGyver hello Marty, my observations here is it's not very active. In fact I often encourage people to go to the Reddit group were lots more people will see posts. Dan used to answer some technical stuff here, but alas no more. :( If you're tackling library issues then I would suggest using GitHub so bugs/fixes can be officially kept track of. If you have broader questions for Teensy 4 users then I'd point you back to Reddit.
Martin Falatic
@MartyMacGyver
@marmilicious Thanks!
Marc Miller
@marmilicious
@MartyMacGyver And thank you for looking into some Teensy issues. Others will definitely appreciate it.
MSO
@Flavourdynamics
I'm also more active on the Reddit and working away on the Teensy 4.0.
Marc Miller
@marmilicious
@DenverClarke Excellent, thank you.
Martin Falatic
@MartyMacGyver
Reddit tends to be a bit more of a free for all which is why I checked up on this here.
I went through and did a code format cleanup of the code base (otherwise it's a bit painful to read and edit the code). Other PR is to get doxygen updated and generate current docs (site is still on 3.1)
Teensy 4.x was WIP so I'm trying to understand how he set it all up, and make it work more like other controllers (at least from the user's perspective... Right now it's a bit of a special snowflake and that's why some things don't work quite right with it.
Gamma115
@Bl4ck_Viking_twitter
Hi guys I'm a student currently in 2nd Semester of Programming. My friend ask me to help with her arduino project in which its utilize LED. She bought a non RGB LED strip (she said). Can FastLED be used for it? Sorry I just can't seem to find a quick answer by googling or reading since its pretty new for me and making a reddit thread is kinda too much for simple question like this. Thanks
Marc Miller
@marmilicious
Non RGB, as in a single color? Or RGB, but non-addressable led strip? If it's only one color there isn't really much of a reason to use FastLED, although you still could. If it's a non-addressable RGB strip, yes, you can still use FastLED.
I must say it never occurred to me to do this. But what's an example of a non-addressable RGB strip that would actually be driven in this context (more than helping with certain data structures and conversions)?