Skip to content

Commit 4d065c4

Browse files
committed
fix doxygen issue
1 parent d8a6ec0 commit 4d065c4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Adafruit_MCP23017.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ void Adafruit_MCP23017::updateRegisterBit(uint8_t pin, uint8_t pValue,
113113
* Initializes the MCP23017 given its HW selected address, see datasheet for
114114
* Address selection.
115115
* @param addr Selected address
116+
* @param theWire the I2C object to use, defaults to &Wire
116117
*/
117118
void Adafruit_MCP23017::begin(uint8_t addr, TwoWire *theWire) {
118119
if (addr > 7) {
@@ -132,6 +133,7 @@ void Adafruit_MCP23017::begin(uint8_t addr, TwoWire *theWire) {
132133
/**
133134
* Initializes the default MCP23017, with 000 for the configurable part of the
134135
* address
136+
* @param theWire the I2C object to use, defaults to &Wire
135137
*/
136138
void Adafruit_MCP23017::begin(TwoWire *theWire) { begin(0, theWire); }
137139

0 commit comments

Comments
 (0)