<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
<link rel="self" type="application/atom+xml" href="http://theeyetribe.com/forum/feed.php?f=8&amp;t=510" />

<title>The Eye Tribe</title>
<subtitle>Developer Forum</subtitle>
<link href="http://theeyetribe.com/forum/index.php" />
<updated>2015-07-14T04:38:12+02:00</updated>

<author><name><![CDATA[The Eye Tribe]]></name></author>
<id>http://theeyetribe.com/forum/feed.php?f=8&amp;t=510</id>
<entry>
<author><name><![CDATA[Memo]]></name></author>
<updated>2015-07-14T04:38:12+02:00</updated>
<published>2015-07-14T04:38:12+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=510&amp;p=2130#p2130</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=510&amp;p=2130#p2130"/>
<title type="html"><![CDATA[Re: How can we recognize each EyeTribe device?]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=510&amp;p=2130#p2130"><![CDATA[
Hi Martin,<br /><br />After I have finished my other projects, I am planning back to finish my HAYDi:EyeTribe software. Probably I will rewrote and beautify it again with my experience, if this hot summer allows me  <img src="http://theeyetribe.com/forum/images/smilies/icon_rolleyes.gif" alt=":roll:" title="Rolling Eyes" /> .<br /><br />In the final stage, I will be need a unique things to lock my software for the protection. I haven't noticed such thing with my quick look. I was thinking of below options.<br />a. Preparing a hardware dongle which I don't prefer. Since it kills the usability.     <br />b. Designing a new EyeTribe usb connected motorized holder  (which it will compensates z and x axis of user head movements) and embedding my own serial number in it.<br /><br />You gave me the answer, thank you. According to sample you are using UUID version 4 which is OK for me. <br /><br /><span style="font-weight: bold"><span style="color: #FF0000">Exposing it through the API is perfect thinking.</span></span> I have plenty of time and prefer to get it from API.<br /><br />This also helps to ryklin's request. They can get the number with a small utility and print on a sticker to use in their equipment inventory system.<br /><blockquote class="uncited"><div><br />serial numbers<br />Postby ryklin » 28 Jul 2014, 20:19 <br /><br />Hi,<br />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.<br /></div></blockquote><p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=6488">skataMemo</a> — 14 Jul 2015, 04:38</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Martin]]></name></author>
<updated>2015-07-14T02:24:07+02:00</updated>
<published>2015-07-14T02:24:07+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=510&amp;p=2128#p2128</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=510&amp;p=2128#p2128"/>
<title type="html"><![CDATA[Re: How can we recognize each EyeTribe device?]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=510&amp;p=2128#p2128"><![CDATA[
Hi Memo,<br /><br />Yes, each device contains an unique identifier that is set when the firmware is flashed at the factory. <br /><br />Accessing it is unfortunately <span style="font-style: italic">not straightforward</span>, we primarily use it internally to keep track of the manufacturing process (batches, dates, components etc.)<br /><br />If you are able to read UVC Extension Units it is available under item #7 and is in the format of:<br />&quot;1f878b8c-f88c-47e4-892a-832fca66f3cb-2050611&quot;, along with four-digit numbers for firmware version and hardware revision.<br /><br />Here's a little C# snippet from the drawer:<br /><dl class="codebox"><dt>Code: </dt><dd><code>        internal unsafe void ReadDeviceInfo(out string uuid, out ushort HwRev, out ushort FwRev)<br />        {<br />            byte&#91;&#93; array = new byte&#91;49&#93;;<br />            byte&#91;&#93; array2 = new byte&#91;45&#93;;<br /><br />            fixed (byte* ptr = array)<br />            {<br />                long num;<br />                ReadFromUVCExtension(dsFilter, 7, new IntPtr(ptr), 49, out num);<br />            }<br /><br />            HwRev = (ushort)(array&#91;0&#93; | array&#91;1&#93; &lt;&lt; 8);<br />            FwRev = (ushort)(array&#91;2&#93; | array&#91;3&#93; &lt;&lt; 8);<br /><br />            for (int i = 0; i &lt; 45; i++)<br />                array2&#91;i&#93; = array&#91;4 + i&#93;;<br /><br />            uuid = Encoding.Default.GetString(array2);<br />        }<br /></code></dd></dl><br /><br />The method &quot;ReadFromUVCExtension&quot; is a method located in a C++ DLL, along the lines of these <a href="https://msdn.microsoft.com/en-us/library/windows/hardware/ff568681(v=vs.85).aspx" class="postlink">Microsoft samples</a>. <br /><br />Probably a better idea to expose it through the API  <img src="http://theeyetribe.com/forum/images/smilies/icon_e_wink.gif" alt=";)" title="Wink" /> <br /><br />How badly do you need it, and when?<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=117">skataMartin</a> — 14 Jul 2015, 02:24</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Memo]]></name></author>
<updated>2015-07-13T22:20:15+02:00</updated>
<published>2015-07-13T22:20:15+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=510&amp;p=2127#p2127</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=510&amp;p=2127#p2127"/>
<title type="html"><![CDATA[How can we recognize each EyeTribe device?]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=510&amp;p=2127#p2127"><![CDATA[
Dear Martin,<br /><br />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? <br /><br />Please advice me something  unique which reported from EyeTribe device.<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=6488">skataMemo</a> — 13 Jul 2015, 22:20</p><hr />
]]></content>
</entry>
</feed>