How to send command to XMOS by USB HID

Technical questions regarding the XTC tools and programming with XMOS.
Post Reply
KuanJay
New User
Posts: 3
Joined: Mon Jun 19, 2017 9:09 am

How to send command to XMOS by USB HID

Post 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!


User avatar
aneves
Experienced Member
Posts: 93
Joined: Wed Sep 16, 2015 2:38 pm

Post 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.
Post Reply