Philip Howard
Philip Howard
Added notes for this in the examples, thank you - https://github.com/pimoroni/st7789-python/commit/9aabd781810abda2f6165c34150753f9e26d867f
## Audio I'd guess the issue with audio playback is that all instructions/install scripts put stuff in `/boot/config.txt` which is now just a file that reads: ```txt DO NOT EDIT...
I can't believe I'm writing these words, but `Unable to autolaunch a dbus-daemon without a $DISPLAY for X11` suggests audio wont work without booting up into Raspberry Pi Desktop... Are...
Do you have any luck running something simple like: `speaker-test -c2 -twav` ?
> Too bad that would have been useful. Something for Pimoroni to improve on next time they revise the hardware design, I guess. It's not like there is not enough...
🤔 https://github.com/pimoroni/pimoroni-pico/blob/970046e84ae73cad23deae28fd6e96427aa0eb64/drivers/inky73/inky73.cpp#L88 Looks like it doesn’t support 90/270 degree rotations (some mix of the chip not supporting it and/or it being a pain to accomplish in software) so if the...
I'm surprised their libraries don't just shim common i2c interface libraries. This looks pretty reasonable, though, and I will leave it here for posterity. Thank you.
PicoGraphics has pretty arbitrary colour formats - including palette and reduced colour modes with automatic quantization and dithering - which would make reading back a colour produce unexpected results more...
Thank you! I guess in Analog it should be something like: ```python self.pin = ADC(pin) if isinstance(pin, Pin) else ADC(Pin(pin)) ``` Looks like it's never actually called with a `Pin`...
I think this has been rendered redundant by https://github.com/micropython/micropython/commit/2b8de7436bbdb54da99bf6bdb79359876fd3bc1d Edit: Or rather, will be, as you correctly point out in #959 - when MicroPython 1.24.x is released 🤔