Skip to content

Commit

Permalink
remove spaces in header file
Browse files Browse the repository at this point in the history
  • Loading branch information
hasenradball committed Dec 5, 2024
1 parent 08a3a2b commit bcdc1c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions PCF8574.h
Original file line number Diff line number Diff line change
Expand Up @@ -204,23 +204,23 @@ class PCF8574 {
* swapping pin 7 with 0, 6 with 1, 5 with 2 etc.
*
*/
void reverse();
void reverse();

/**
* @brief select sets the specified pin pin to High,
* all others set to Low. If pin > 7 all pins are set to LOW.
*
* @param pin pin which should be set to 1
*/
void select(const uint8_t pin);
void select(const uint8_t pin);

/**
* @brief select sets the pins from 0...pin to High,
* all others set to Low. If pin > 7 all pins are set to LOW.
*
* @param pin pin up to which should be set to 1
*/
void selectN(const uint8_t pin);
void selectN(const uint8_t pin);

/**
* @brief sets all pins to LOW.
Expand Down

0 comments on commit bcdc1c3

Please sign in to comment.