Adafruit-GFX-Library
Adafruit-GFX-Library copied to clipboard
Adafruit GFX graphics core Arduino library, this is the 'core' class that all our other graphics libraries derive from
Allows to use rlottie animations in Adafruit GFX You can use [Samsung/rlottie](https://github.com/Samsung/rlottie) library with C-api header Best regards. Ref: https://github.com/Samsung/rlottie/issues/484
It would be a nice to have feature where the text size could be also entered as a ```float```. Currently an integer numbers for text size are allowed. By default:...
Hi, with commit d81e3351f3c2a8e280dbbd531f8c20d949e719e8 @PaintYourDragon introduced `yield()` for ESP8266 into `writeLine()` and `drawCircle()`. ``` void Adafruit_GFX::writeLine(int16_t x0, int16_t y0, int16_t x1, int16_t y1, uint16_t color) { #if defined(ESP8266) yield(); #endif...
We could leave the `yield()` behavior customizable to handle edge cases like #285. Most ESP8266 users need to call `yield()` inside expensive drawing operations to keep the watchdog from firing....
This change affects only the file "Adafruit_GFX.h". Changes the Adafruit_GFX_Button class to expose the button's label thru the constant function" getLabel()". I've run the code succesfully thru the mega board.
These changes plus a companion pull request for Adafruit_ILI0341provide performance benefits for the RP2040 based boards when used in hardware SPI mode. I suspect this pull needs to be refactored...
- This allows the user to avoid unnecessary spin locks while waiting for a DMA transfer to complete. - This has the same limitations as the `dmaWait()` function in terms...
I modified Adafruit_GFX.cpp and Adafruit_GFX.h to match the functionality of drawBitmap so that it can draw background pixels. This was implemented as a function overload to avoid breaking compatibility with...
Fixes two problems identified by examination of PR #333. These are two separable commits in the PR. - Destructor is responsible for creating/destroying the active union member - Handle SPI_INTERFACES_COUNT==0...
Hi Limor, & Adafruit pals. I recently bought a sample of a 256x64 OLED panel based on the SSD1322 controller from a supplier. I wanted to use the panel in...