Wire.requestFrom(0b1101000,6); // request for 6 bits from selected register
The second argument to requestFrom() is the number of BYTES being requested, not bits.
Wire.requestFrom(0b1101000,6); // request for 6 bits from selected register
The second argument to requestFrom() is the number of BYTES being requested, not bits.