Adafruit-GFX-Library icon indicating copy to clipboard operation
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

Results 126 Adafruit-GFX-Library issues
Sort by recently updated
recently updated
newest added

There is a number of libraries inheriting from the class in this library. For example: ```c++ class Adafruit_SPITFT : public Adafruit_GFX ``` Which by itself is also inherited by other...

Similar to what is done for ESP32 and NRF52 chips, use the builtin multi-byte methods for writing pixels over SPI. When reviewing the change, it may be helpful to look...

this PR is related to https://github.com/adafruit/Adafruit-ST7735-Library/pull/156 - same description apply

The current signature of Adafruit_GFX::getTextBounds are : getTextBounds( [multiple_string_types] , int16_t , int16_t , int16_t*, int16_t* , uint16_t*, uint16_t*) However, there is no non-null enforcement for the last 4 pointer...

Two small fixes and a cleanup/optimisation found while working on parallel support for RP2040. (I actually have _two_ versions of that, need to do some tidying...) - Fixes a missing...

Included DigitalWF font in some different sizes. The font is created from scratch by Wiredolphin and is provided without any restriction.

I took the [ssd1306_128x64_i2c](https://github.com/adafruit/Adafruit_SSD1306/blob/master/examples/ssd1306_128x64_i2c/ssd1306_128x64_i2c.ino) example and turned it into an online playground on Wokwi, an Arduino teaching platform I'm working on. The playground allows you to run the code *in...

- Arduino board: Arduino Leonardo - Arduino IDE version (found in Arduino -> About Arduino menu): 1.8.13 First up I've concluded that the getTextBounds function includes an additional character. Refer...

Hello, since sporadically, I have some problems with my SPI communication on an esp8266 device, I was looking into the code to see if there are some unbalanced calls to...

This pull request adds functionality to Adafruit_GFX_Button: setting a custom backcolour for when the button is pressed; setting the radius of the rounded corners and fixes an issue with using...