
Originally Posted by
rocky79
Hi Sean,
If i want to write a byte to the microncontroller can i say BufferOut(2)=%10011111 (" for example)
In your code above:
BufferOut(1) = 68 'Ascii Value for D
BufferOut(2) = 65 'Ascii Value for A
BufferOut(3) = 84 'Ascii Value for T
BufferOut(4) = 65 'Ascii Value for A
hidWriteEx VendorID, ProductID, BufferOut(0)
and to send the info,
are you sending BufferOut(2), BufferOut(3)....and so on?
if i wanna send the values in bufferout(2) would the code look like this below?
hidWriteEx(VendorID, ProductID, BufferOut(0),BufferOut(2) )
Thanks much
Bookmarks