foamyguy
foamyguy
I tested this on a CPX with v6.0.0-alpha.1 using this code: ```python import time import board import neopixel pixel_pin = board.NEOPIXEL num_pixels = 10 pixels = neopixel.NeoPixel(pixel_pin, num_pixels, brightness=0.3, auto_write=True)...
Maybe I spoke too soon, or else there is a little bit more at play in the context of this issue... I just ran essentially the same test on an...
For some reason the actions seems to be running against an older commit rather than the most recent one. It's failing due to end of file newline in the new...
The "Frameworks" section of Awesome Circuitpython lists some things that are along the same lines as these helpful tools. That is the closest thing I am aware of to an...
My understanding is that LVGL support would need to be added inside of the CircuitPython core. I think it's likely that we'd want to integrate it with the displayio core...
@tekktrik not quite finished yet, still need to check on the last few. I started at the bottom of the list and am working my way up. Some of them...
I am hitting this problem too. I tried downgrading to a lower numpy, but was unable to get that working. Did anyone ever find a fix for this?
There are some values that modern versions of numpy is expecting to be ints but I guess sometime in the past they may have allowed floats. I was able to...
I see this problem today as well. The main download link correctly shows the platform that I am on, but when clicked always downloads a .dmg file. also the instructions...
I took a look into this, having a `brightness` property would be quite tricky because the "current brightness level" state is only stored inside of the `pulse_generator()` the `Pulse` class...