From 99b3e568912568abd20a62b12c3a683e4758b912 Mon Sep 17 00:00:00 2001 From: nathan Date: Sat, 13 Jan 2024 21:08:24 -0500 Subject: [PATCH] fixed variable documentation --- Adafruit_GFX.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Adafruit_GFX.h b/Adafruit_GFX.h index 8f4839dc..a2a1f816 100644 --- a/Adafruit_GFX.h +++ b/Adafruit_GFX.h @@ -295,8 +295,9 @@ class Adafruit_GFX_Button { bool isPressed(void) { return currstate; }; protected: - Adafruit_GFX *_gfx; - int16_t _x1, _y1; ///< Coordinates of top-left corner + Adafruit_GFX *_gfx; ///< gfx display pointer + int16_t _x1; ///< x Coordinate of top-left corner + int16_t _y1; ///< y Coordinate of top-left corner uint16_t _w, _h; ///< width and heaight of button uint8_t _textsize_x; ///< width of text character in pixels uint8_t _textsize_y; ///< height of text character in pixels