Header reformatting mainly

This commit is contained in:
anschrammh 2025-11-04 22:04:44 +01:00
parent ebc1444ca4
commit 628a38d6c2

View File

@ -23,13 +23,15 @@ class PCF8574
boolean getPinMode(Pin pin); boolean getPinMode(Pin pin);
void getPinModeAll(boolean array[8]); void getPinModeAll(boolean array[8]);
void togglePin(Pin pin); void togglePin(Pin pin);
//Reset the IRQ by doing a dummy read // Reset the IRQ by doing a dummy read
void resetIRQ(); void resetIRQ();
private: private:
TwoWire &_twc; TwoWire &_twc;
uint8_t _address; uint8_t _address;
uint8_t _pinConfig; uint8_t _pinConfig;
uint8_t _pddr; uint8_t _pddr;
protected: protected:
}; };