Skip to content

Commit

Permalink
fix doc and cleaned an extra unused char
Browse files Browse the repository at this point in the history
  • Loading branch information
sumotoy committed Mar 16, 2015
1 parent ef6fdc6 commit 0efbd97
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion mcp23008.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class mcp23008 : public gpio_expander
public:
mcp23008(const uint8_t adrs);
mcp23008();
void postSetup(const uint8_t adrs);;//used with other libraries only
void postSetup(const uint8_t adrs);//used with other libraries only
virtual void begin(bool protocolInitOverride=false); //protocolInitOverride=true will not init the SPI


Expand Down
2 changes: 1 addition & 1 deletion mcp23017.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class mcp23017 : public gpio_expander
public:
mcp23017(const uint8_t adrs);//0x20...0x27
mcp23017();
void postSetup(const uint8_t adrs);;//used with other libraries only
void postSetup(const uint8_t adrs);//used with other libraries only
virtual void begin(bool protocolInitOverride=false); //protocolInitOverride=true will not init the SPI

void gpioPinMode(uint16_t mode); //OUTPUT=all out,INPUT=all in,0xxxx=you choose
Expand Down
2 changes: 1 addition & 1 deletion mcp23018.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class mcp23018 : public gpio_expander
public:
mcp23018(const uint8_t adrs);
mcp23018();;//used with other libraries only
void postSetup(const uint8_t adrs);;//used with other libraries only
void postSetup(const uint8_t adrs);//used with other libraries only
virtual void begin(bool protocolInitOverride=false); //protocolInitOverride=true will not init the SPI


Expand Down
2 changes: 1 addition & 1 deletion pca9555.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class pca9555 : public gpio_expander
public:
pca9555(const uint8_t adrs);
pca9555();;//used with other libraries only
void postSetup(const uint8_t adrs);;//used with other libraries only
void postSetup(const uint8_t adrs);//used with other libraries only

virtual void begin(bool protocolInitOverride=false); //protocolInitOverride=true will not init the SPI

Expand Down
5 changes: 2 additions & 3 deletions pca9655.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
model: company: pins: protocol: Special Features:
---------------------------------------------------------------------------------------------------------------------
pca9655 NTX 16 I2C INT/64 addresses
tca9655 TI 16 I2C INT/64 addresses
pca9655 ON 16 I2C INT/64 addresses
---------------------------------------------------------------------------------------------------------------------
Version history:
0.1: initial support
Expand Down Expand Up @@ -139,7 +138,7 @@ class pca9655 : public gpio_expander
public:
pca9655(const uint8_t adrs);
pca9655();;//used with other libraries only
void postSetup(const uint8_t adrs);;//used with other libraries only
void postSetup(const uint8_t adrs);//used with other libraries only

virtual void begin(bool protocolInitOverride=false); //protocolInitOverride=true will not init the SPI

Expand Down
2 changes: 1 addition & 1 deletion pcf8574.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class pcf8574 : public gpio_expander
public:
pcf8574(const uint8_t adrs);
pcf8574();
void postSetup(const uint8_t adrs);;//used with other libraries only
void postSetup(const uint8_t adrs);//used with other libraries only
virtual void begin(bool protocolInitOverride=false); //protocolInitOverride=true will not init the SPI


Expand Down
2 changes: 1 addition & 1 deletion pcf8574a.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class pcf8574a : public gpio_expander
public:
pcf8574a(const uint8_t adrs);
pcf8574a();
void postSetup(const uint8_t adrs);;//used with other libraries only
void postSetup(const uint8_t adrs);//used with other libraries only
virtual void begin(bool protocolInitOverride=false); //protocolInitOverride=true will not init the SPI


Expand Down

0 comments on commit 0efbd97

Please sign in to comment.