Skip to content

Commit 9e1d677

Browse files
committed
Doxygen
1 parent c4c0fcd commit 9e1d677

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

src/components/i2c/drivers/WipperSnapper_I2C_Driver_Out.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ class WipperSnapper_I2C_Driver_Out : public WipperSnapper_I2C_Driver {
6060
The width of the display in pixels.
6161
@param height
6262
The height of the display in pixels.
63-
@param i2c_address
64-
The I2C address of the display.
63+
@param text_size
64+
The display's text size.
6565
*/
6666
virtual void ConfigureSSD1306(uint8_t width, uint8_t height,
6767
uint8_t text_size) {

src/components/i2c/drivers/WipperSnapper_I2C_Driver_Out_Ssd1306.h

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ class WipperSnapper_I2C_Driver_Out_Ssd1306
8585
The width of the display in pixels.
8686
@param height
8787
The height of the display in pixels.
88-
@param i2c_address
89-
The I2C address of the display.
88+
@param text_size
89+
The magnification factor for the text size.
9090
*/
9191
void ConfigureSSD1306(uint8_t width, uint8_t height, uint8_t text_size) {
9292
_width = width;
@@ -133,8 +133,10 @@ class WipperSnapper_I2C_Driver_Out_Ssd1306
133133

134134
protected:
135135
Adafruit_SSD1306 *_display =
136-
nullptr; ///< Pointer to the Adafruit_SSD1306 object
137-
uint8_t _width, _height, _text_sz; ///< Width and height of the display
136+
nullptr; ///< Pointer to the Adafruit_SSD1306 object
137+
uint8_t _width; ///< Width of the display in pixels
138+
uint8_t _height; ///< Height of the display in pixels
139+
uint8_t _text_sz; ///< Text size of the display
138140
};
139141

140142
#endif // WIPPERSNAPPER_I2C_DRIVER_OUT_SSD1306_H

0 commit comments

Comments
 (0)