Skip to content

Commit

Permalink
fixed variable documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanjshaffer committed Jan 14, 2024
1 parent 47f7276 commit 99b3e56
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Adafruit_GFX.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 99b3e56

Please sign in to comment.