Pharap
Pharap
Several descriptions are using `\n` but these aren't getting parsed and translated into page breaks. Rather than removing all the `\n` and replacing them with spaces, perhaps it would be...
This is more of a matter for the future than an immediate issue, but while doing something Arduboy related I noticed that `drawFastVLine` is still using the 'dumb' implementation: https://github.com/MLXXXp/Arduboy2/blob/23742477880690895aaf591b88abbea650d95d4d/src/Arduboy2.cpp#L547-L555...
(Note: I'm proposing this separately because although it's effectively working towards a similar goal to #68, the implementation is potentially more demanding and requires a bit more commitment, whereas #68...
This is an idea I had some time ago and suddenly remembered while doing something else. The idea is that it would be useful to provide an overload of `Arduboy2Base::drawBitmap`...
I was helping someone on the forum when it suddenly occurred to me that perhaps `Sprites` ought to provide a `getWidth` and `getHeight` function for retrieving the width and height...
This template function is provided as a convinience to help users to avoid potential buffer overrun errors at compile time. It performs a `static_assert` to check if the provided `char`...
I recently read a two person debate that unfolded during a PR that got closed and there were a number of important issues raised. In response to this, to ensure...
This library doesn't appear to contain a licence so it's not clear how it's allowed to be used. Is it copyrighted? Is it in the public domain? Without a licence...
I recently raised platformio/platformio-core#2971 where it was recommended that I use `platformio.project.helpers` ("PIO Core API"), but this feature doesn't seem to be documented anywhere on docs.platformio.org.
If `dir` accepted a `filter` parameter (a predicate function) then it would be easier to filter out specific file types (e.g. files with a `mode` of `'file'`, files created in...