Page 1 of 1

How to send command to XMOS by USB HID

Posted: Tue Feb 06, 2018 7:02 am
by KuanJay
Hi,
I want to send some command from my client on windows to the XMOS, so i can control each channel volume.

but I don't know how to do it. Hope someone give me some advising.

Thank you!

Re: How to send command to XMOS by USB HID

Posted: Wed Feb 14, 2018 2:59 pm
by aneves
You need to be familiar with the Windows API concerning finding and communication with hardware devices. This can be coded in either C++ or C#. Check out this Microsoft page for a great into to developing applications on Windows for USB communication:
https://docs.microsoft.com/en-us/window ... usb-device

If you're familiar with Python, try PyUSB:
https://github.com/pyusb/pyusb

Note that you will need to install a 3rd party USB backend in order to use PyUSB.

Hope this helps.