Dear Martin,
I need to separately identify every connected EyeTribe device. Is there a unique number like a serial number that we can get from EyeTribe, at anytime?
Please advice me something unique which reported from EyeTribe device.
internal unsafe void ReadDeviceInfo(out string uuid, out ushort HwRev, out ushort FwRev)
{
byte[] array = new byte[49];
byte[] array2 = new byte[45];
fixed (byte* ptr = array)
{
long num;
ReadFromUVCExtension(dsFilter, 7, new IntPtr(ptr), 49, out num);
}
HwRev = (ushort)(array[0] | array[1] << 8);
FwRev = (ushort)(array[2] | array[3] << 8);
for (int i = 0; i < 45; i++)
array2[i] = array[4 + i];
uuid = Encoding.Default.GetString(array2);
}
serial numbers
Postby ryklin » 28 Jul 2014, 20:19
Hi,
Large organizations need to be able to keep inventory of its equipment. It came to our attention that there is no serial number printed on the tracker. You may want to consider adding this for future shipments.