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
Add basic level of optimisation for RP2040 processors. The is compatible with the official Arduino RP2040 board support package.
Hello, I've created an extension to the drawButton() method to allow the use of custom fonts for the button labels. Without these changes the labels were not placed correctly inside...
- Arduino board: **DVI RP2040 Feather** - Arduino IDE version (found in Arduino -> About Arduino menu): **2.1.0** [aquarium.ino.txt](https://github.com/adafruit/Adafruit-GFX-Library/files/11631419/aquarium.ino.txt) [sprites.h.txt](https://github.com/adafruit/Adafruit-GFX-Library/files/11631420/sprites.h.txt) I messed with the aquarium example to get my own...
Hi there, so I got this GC9A01 LCD screen and connected it to my Esprit 32. The ESP: https://www.amazon.de/dp/B071P98VTG?psc=1&ref=ppx_yo2ov_dt_b_product_details The LCD: https://eckstein-shop.de/WaveShare128inchRoundLCDDisplayModule240x2402C65KRGBforArduino2FRaspberryPi?googlede=1&gclid=CjwKCAjwvJyjBhApEiwAWz2nLTKXwDhNr4DcPCHgqrYxKWDgB9AoKZpppq-P_iJ3GpF7hca2gj8UBxoCjO0QAvD_BwE So all LCD Programm Exempels work. But I...
Hello, i need to modify the println function i'm using a matrix display, and i'm trying to find where the drawpixel() (or the equivalent for println) are, i can't find...
## Problem Link to github is broken. ## Change Documentation: fix link to Adafruit GFX github repository. No code change.
A method is needed to update a button label without re-initializing the button. The following should be added. /**************************************************************************/ void Adafruit_GFX_Button::setLabel(const char *label) { strncpy(_label, label, 9); _label[9] = 0;...
It would be really nice to expand the Examples folder to include things like setting the font
Instead of hard coding a 6 pixel adjustment for the cursor Y position in setFont method shouldn't the code use the yAdvance field of the new font (or the yAdvance...
- **Describe the scope of your change--i.e. what the change does and what parts of the code were modified.** - I added clearDisplay() and display() as virtual member functions in...