Fixed default of _dataOut

This commit is contained in:
sseptillion 2016-05-20 12:06:10 +02:00
parent dddb9dd213
commit 2bfd32464b

View File

@ -38,7 +38,7 @@ PCF8574::PCF8574(const uint8_t deviceAddress)
// TWBR = 12; // 400KHz
_dataIn = 0;
_dataOut = 0;
_dataOut = 0xFF;
_error = PCF8574_OK;
}