Cleaned up code formatting

This commit is contained in:
anschrammh 2025-10-29 23:02:37 +01:00
parent 7e4dafd8b3
commit f44b7486b8

View File

@ -25,11 +25,13 @@ class PCF8574
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:
}; };