Philip Howard

Results 1003 comments of Philip Howard
trafficstars

You have two choices: 1. You can adjust the clock frequency of the timer to make 1 tick != 1 second and adjust your ticks amount accordingly. 2. You can...

Here's a *really* cut down `datetime.py`: ```python _DBM = (0, 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334) _DIM = (0, 31, 28, 31, 30, 31,...

Contributing guidelines might be a good way to address #223 Though I think the broader process of forking/editing and raising a PR might be outside the scope of such things-...

There are UART TX/RX pins broken out along the edge of Badger, these aren't configured to do anything in MicroPython but are typically used with stdio in C++ programs- so...

Sorry for being distressingly late here, but if you want to get this rolling again you can rebase the vscode settings commit out of this with: ``` git rebase -i...

I think my preferred solution would be to include "bitmap_fonts/bitmap_fonts.cmake" in the consuming project, but that's because I'm wary of this pattern becoming the norm- since it duplicates the whole...

Both ST7789 and ST7735 use byte-swapped RGB565 IIRC. Pretty sure this can now be handled by our scanline conversion setup without too much trouble. This wart predates PicoGraphics, from simpler...

I think we'd need to differentiate endianess so that displays can request in their specific, supported byte-order. At the moment `RGB565` is treated as display-native, so the ST7789 driver does...

Scan-line conversion was changed to per-pixel "frame_convert" into an arbitrary sized buffer as of - https://github.com/pimoroni/pimoroni-pico/pull/422 This shouldn't meaningfully affect any byte swapping behavior.

> `ulab` does not seem to be included in `pimoroni-pico-v1.19.0-micropython.uf2`. Was that forgotton or not meant to be included in this firmware version? Thanks! `ulab` had to be removed, since...