Bloxy.USBBluetoothAdapter.SendACLData C# (CSharp) Method

SendACLData() public method

public SendACLData ( byte buffer, int offset, int count ) : void
buffer byte
offset int
count int
return void
        public void SendACLData(byte[] buffer, int offset, int count)
        {
            int transferred;
              _writer.Write(buffer, offset, count, 10000, out transferred);

              lock (_writer)
              {
            Logger.LogData('I', buffer, offset, count);
              }
        }