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