我知道有一个javascript(可能是库?)可以处理这个,但是语法是什么,我该怎么做?另外,如何编写usb以将信号发送到JS或HTML?
(对不起,但我在所有硬件上都是菜鸟,我需要这个工作XD)
答案 0 :(得分:0)
您可以node-usb
使用此https://github.com/tessel/node-usb,将文档与http://www.beyondlogic.org/usbnutshell/usb1.shtml
通常,为了访问USB设备,必须执行以下步骤:
设备
配置(在node-usb中仅支持默认配置)
声明接口
访问端点(写入和读取实际数据)
cf http://www.dreamincode.net/forums/topic/148707-introduction-to-using-libusb-10/和其他libusb
教程
node-usb
的一般示例位于How to send data to USB device in node.js using libusb
http://mikeheavers.com/tutorials/reading_data_from_usb_devices_using_javascript/
更高级的示例(kinect控件)位于https://github.com/schakko/node-usb/blob/master/examples/kinect/kinect.js
(https://developers.google.com/web/updates/2016/03/access-usb-devices-on-the-web)