public void WriteRead(byte[] output, byte[] input) { I2CWrapper.WriteBytes(_busHandle, _address, output, output.Length); I2CWrapper.ReadBytes(_busHandle, _address, input, input.Length); }
public void Write(byte[] output) { I2CWrapper.WriteBytes(_busHandle, _address, output, output.Length); }