Skip to content

Commit 0f36a34

Browse files
authored
Merge pull request #9 from trycoon/patch-1
Removed default parameter from CPP-file
2 parents 346e14d + b173a0b commit 0f36a34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/MCP23017.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include "MCP23017.h"
22

3-
MCP23017::MCP23017(uint8_t address, TwoWire& bus = Wire) {
3+
MCP23017::MCP23017(uint8_t address, TwoWire& bus) {
44
_deviceAddr = address;
55
_bus = &bus;
66
}
@@ -194,4 +194,4 @@ void MCP23017::clearInterrupts(uint8_t& portA, uint8_t& portB)
194194
readRegister(MCP23017_REGISTER::INTCAPA, portA, portB);
195195
}
196196

197-
#endif
197+
#endif

0 commit comments

Comments
 (0)