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