<?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="https://forums.obdev.at/app.php/feed/topic/4960" />

	<title>Objective Development Forums</title>
	
	<link href="https://forums.obdev.at/index.php" />
	<updated>2010-10-30T20:23:52+02:00</updated>

	<author><name><![CDATA[Objective Development Forums]]></name></author>
	<id>https://forums.obdev.at/app.php/feed/topic/4960</id>

		<entry>
		<author><name><![CDATA[Valeron]]></name></author>
		<updated>2010-10-30T20:23:52+02:00</updated>

		<published>2010-10-30T20:23:52+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16466#p16466</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16466#p16466"/>
		<title type="html"><![CDATA[Re: HID_Data with Delphi...]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16466#p16466"><![CDATA[
on event &quot;OnEnumerate&quot;<br /><div class="codebox"><p>Code: </p><pre><code>...<br />if (HidDev.Attributes.VendorID=VID) and (HidDev.Attributes.ProductID=PID) then begin<br />   Dev:=HidDev; //Global variable<br />   eDev.Text:=Dev.ProductName; //my label<br />   Dev.CheckOut; <br /> end;<br />...<br /></code></pre></div><br /><br /><br />on event &quot;ButtonClick&quot;<div class="codebox"><p>Code: </p><pre><code>var Raw:array&#91;0..9&#93; of byte; //length of Raw must be = Dev.Caps.OutputReportByteLength <br />Writed:Cardinal;<br />...<br />if Dev=nil then exit;<br />Raw&#91;0&#93;:=$01; //Your Report ID, i use 0x01<br />Raw&#91;1&#93;:= ...... // your data<br />Raw&#91;xx&#93;:=...<br />Dev.WriteFile(Raw&#91;0&#93;,Dev.Caps.OutputReportByteLength,Writed);<br />...<br /></code></pre></div><br />Dev.Caps.OutputReportByteLength - length of output report descriptor<br />Now I make an USB-application, if you have a questions, call ICQ 454817422<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=4227">Valeron</a> — Sat Oct 30, 2010 8:23 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[dzairo]]></name></author>
		<updated>2010-10-29T09:43:30+02:00</updated>

		<published>2010-10-29T09:43:30+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16441#p16441</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16441#p16441"/>
		<title type="html"><![CDATA[Re: HID_Data with Delphi...]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16441#p16441"><![CDATA[
maxi.<br />I use this component. if use any example then show you all HID device on system and if click on info button then show VID and PID number , serial number .... .<br />there is place for enter ID number report and button read and write and it's all. But how can I read data from mcu and send???<br />there just had not understood thing which is crucial in use, and here I do not know<br /><br />regards<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=4367">dzairo</a> — Fri Oct 29, 2010 9:43 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[maxi]]></name></author>
		<updated>2010-10-28T22:45:23+02:00</updated>

		<published>2010-10-28T22:45:23+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16433#p16433</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16433#p16433"/>
		<title type="html"><![CDATA[Re: HID_Data with Delphi...]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16433#p16433"><![CDATA[
<blockquote><div><cite>dzairo wrote:</cite>On jvHid is more example .<br />If use this example then can find and see information for all HID devices connected in System (VID , PID, serial number ...)<br />but how use it for read and write data in to MCU ????<br /></div></blockquote><br />Is there not also an example of how to read/write? I do not use Delphi myself nor do I have any knowledge of the jvHidController class but a quick google tells me it's part of the JEDI Visual Component Library <a href="http://jvcl.delphi-jedi.org/" class="postlink">http://jvcl.delphi-jedi.org/</a>. Looks like it comes with plenty of examples and documentation.  As far a the jvHid is concerned a v-usb hid device should behave the same as any other usb hid device.<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=2570">maxi</a> — Thu Oct 28, 2010 10:45 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[dzairo]]></name></author>
		<updated>2010-10-28T09:20:02+02:00</updated>

		<published>2010-10-28T09:20:02+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16423#p16423</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16423#p16423"/>
		<title type="html"><![CDATA[Re: HID_Data with Delphi...]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16423#p16423"><![CDATA[
Hi maxi.<br />More user write on this forum so use any V-USB example with jvHidControllerClass for Delphi.<br />But no more information can find.<br />On jvHid is more example .<br />If use this example then can find and see information for all HID devices connected in System (VID , PID, serial number ...)<br />but how use it for read and write data in to MCU ????<br />If try example posted from this forum no one work good.<br />On this forum are users what can help but I don't have contact to send email. Just nick on this forum.<br />Maybe it's not hard just don't know from where start.<br /><br />regards<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=4367">dzairo</a> — Thu Oct 28, 2010 9:20 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[maxi]]></name></author>
		<updated>2010-10-27T22:04:30+02:00</updated>

		<published>2010-10-27T22:04:30+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16419#p16419</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16419#p16419"/>
		<title type="html"><![CDATA[Re: HID_Data with Delphi...]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16419#p16419"><![CDATA[
Perhaps you will get a better reply on the Delphi forums. Working example code has been provided which can be compiled under MinGW or even MSVC (with a few tweaks). The biggest problem I think you will face is finding a compatible version of the Driver Delevopment Kit (DDK) required to compile the HID-tool executable.<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=2570">maxi</a> — Wed Oct 27, 2010 10:04 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[dzairo]]></name></author>
		<updated>2010-10-27T20:17:22+02:00</updated>

		<published>2010-10-27T20:17:22+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16412#p16412</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16412#p16412"/>
		<title type="html"><![CDATA[Re: HID_Data with Delphi...]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16412#p16412"><![CDATA[
no one use delphi with Hid?<br />help pls with this <br />regarst<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=4367">dzairo</a> — Wed Oct 27, 2010 8:17 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[dzairo]]></name></author>
		<updated>2010-10-24T11:48:05+02:00</updated>

		<published>2010-10-24T11:48:05+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16359#p16359</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16359#p16359"/>
		<title type="html"><![CDATA[HID_Data with Delphi...]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=4960&amp;p=16359#p16359"><![CDATA[
Hi all.<br />I read this post <a href="http://forums.obdev.at/viewtopic.php?f=8&amp;t=3748" class="postlink">http://forums.obdev.at/viewtopic.php?f=8&amp;t=3748</a> where some user iphi write so have<br />worked HID_data demo with Delphi.<br />Have any one this source or can contact me iphi sevc @ post at sk .<br />I'm too interesting to use any HID project with Delhi<br />I create project for UART-CDC project - read RFID chip, use small I2C LCD and some button . for control use standard serial port  (after install driver) set speed 600bps and work.<br />But I want make own application with out of install driver ..<br /><br />regards<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=4367">dzairo</a> — Sun Oct 24, 2010 11:48 am</p><hr />
]]></content>
	</entry>
	</feed>
