Michael Miller

Results 232 comments of Michael Miller

Well that is interesting. The ESP32 Bitbang method could be modified to provide a reasonable version for many ARM processors that support this special cycle counter. A lot of them...

Something more to try quickly. Take a NeoPixelBus sample (or your favorite sketch using NeoPixelBus). At the top where you include NeoPixelBus, make sure it looks like this .... ```...

Thanks, just more proof of the fragmentation of ARM implementations for Arduino. You will have to wait for my new ARM bitbang method I am working on.

Ok, I just published a [new branch here](https://github.com/Makuna/NeoPixelBus/tree/ArmBitBang) that contains the general purpose ARM bit bang methods. It is currently only enabled for your specific board setup. So, fetch this...

The "method" is the second part of the NeoPixelBus template construction. Instead of Neo800KbpsMethod use NeoArmBitBangWs2812xMethod like... ``` NeoPixelBus strip(PixelCount, PixelPin); ``` No need for any special defines or includes...

Please try to minimize the amount of copied compile output. Only need the errors at the end and one line above them that includes the -DARDUINO_ARH_ARM part. Look at your...

I made a small change, maybe it will help clarify any build issues. At the top of your sketch, before you include NeoPixelBus.h, add ``` #define USE_ARM_DWT_BITBANG #include ``` This...

If Clearcore team wants to support Arduino correctly (with a board manager install) I would give it try. I am over the "install Arduino support from our site only" crap;...

The original intent was that this structure contains constant values, if you want to set one one, you create one not modify it. This model allows for the compiler to...

But what REAL scenario do you have? The example you give isn't a real scenario. Why would you get the time and then adjust it to a specific date/time? You...