hid Questions

2

We have an embedded device based on TI's CC2531 which has (apart from the control EP0 and a number of IN-only endpoints) an endpoint that is both IN and OUT. We have noticed a difference in how win...
Germanic asked 10/2, 2015 at 9:59

5

Solved

I know that Linux gives out a 9-bit two's complement data out of the /dev/input/mice. I also know that you can get that data via /dev/hidraw0 where hidraw is your USB device giving out raw data fro...
Lactase asked 31/1, 2011 at 20:38

4

Solved

I am new to USB and to Android so please forgive me if I don't explain myself clearly. I have a USB HID device that I can communicate with in Windows. I am trying to establish communication using ...
Darsey asked 8/11, 2012 at 0:19

2

Solved

How do you get the raw descriptor data from a HID device in Windows? Background: I need to get the Manufacturer, Product Name, and Serial Number from a HID device in Windows. I'm using hid.dll to...
Termitarium asked 4/10, 2014 at 10:1

3

I'm working on a JavaScript project that involves reading credit cards and driver's licenses from a USB magnetic stripe reader in keyboard emulation mode. It turns out getting credit cards working ...
Known asked 1/5, 2012 at 15:37

1

Solved

I need to find out HID-compliant touch screen(single touch) input data structure(like byte ordering and what should be written in each byte). I have used HID-compliant touchscreen descriptor from M...
Gualtiero asked 4/11, 2021 at 14:30

2

The following code works perfectly to get a list of connected HID devices: import Foundation import IOKit import IOKit.usb import IOKit.hid private func createDeviceMatchingDictionary( usagePage:...
Helli asked 3/1, 2018 at 2:27

2

Solved

I would like to implement the read and write calls of the python hidapi, in pysub. An example code using the python hidapi, looks like this: import hid hdev = hid.device() h = hdev.open_path( path...
Teodor asked 23/6, 2021 at 14:16

1

I use RawInput + Windows USB HID API to receive WM_INPUT message when a gamepad button is pressed and retrieve gamepad state. There's a problem: two triggers work on same axis which means you can'...
Consubstantiate asked 13/1, 2016 at 10:58

3

Solved

I am new to python but have experience with HID devices and evdev. I have a 2D barcode scanner which interfaces as HID device. The goal is to get the string from a QR code. I am able to recognize t...
Granitite asked 1/11, 2013 at 18:25

3

(This is a crosspost from the MSDN forums since there hasn't been any response there for quite some time and I thought I would get better answers here.) I have a BLE device containing a custom GAT...
Tallyho asked 19/8, 2017 at 16:10

2

EDIT: Issue reported here: https://github.com/signal11/hidapi/issues/276 Inkling is a pen-device from Wacom. (InklingReader) is an open source project that gets real-time data from it. I'm trying...
Crushing asked 13/5, 2016 at 15:13

3

I'm switching an application from DirectInput to RawInput for gamepad handling, and I'd like to present a human readable description for each gamepad. The ideal would be the device text that appear...
Clough asked 29/9, 2012 at 20:29

2

Solved

There are various ways to retrieve the Windows "Device Name" of a HID device, GetRawInputDeviceInfo with RIDI_DEVICENAME being one way to do it. Given the example name: \?\HID#VID_FEED&PID_DE...
Columbarium asked 6/2, 2014 at 22:4

3

I would like to build a camera trigger for my phone by simulating a BLE keyboard that sends the Volume Up key to the phone connected by Bluetooth. I want this because I want to trigger the native C...
Waterage asked 20/6, 2020 at 13:41

10

Solved

Is there an existing subset of the alphanumerics that is easier to read? In particular, is there a subset that has fewer characters that are visually ambiguous, and by removing (or equating) certai...
Draggletailed asked 12/8, 2012 at 4:20

0

I am currently trying to send a string of arbitrary length to a Boca FGL46 Thermal Printer (A HID Printer) with java. On MacOS this works without issue; A 100 byte payload leads to a 100 byte outpu...
Baulk asked 1/5, 2020 at 23:17

5

I have a bit of a problem with generating a HID descriptor. I want to use simple reports with ID1 for input and ID2 for output with 64 bytes of data. I realized that despite RTFMing and googling I...
Portfolio asked 6/2, 2014 at 15:26

3

Solved

I am trying to write an app for Android P using the Bluetooth HID device profile service to be used as a Bluetooth keyboard. According to the documentation I am supposed to use the method Bluetooth...
Hooves asked 30/11, 2018 at 9:54

1

Hi I am writing a simple console app that needs to write bytes to MCP2210 USB to SPI Master I found this library over here, seems to do good job with connecting the device and reading the metadata....
Regression asked 18/1, 2019 at 8:56

1

I am trying to port a library from classic desktop to UWP. It all works like planned except for one thing. When I try to open a HID connection to the device(A wiimote) it won't connect if the permi...
Hypsometry asked 28/5, 2017 at 15:52

3

I need to enumerate all HID devices connected to my PC. I tried to use this answer, but it enumerates USBHub devices and I can't find there my HID device. EDIT: I will be glad to know If there an...
Pertussis asked 2/12, 2011 at 10:9

2

UPDATE I managed to send the data properly. For anyone who ran into the same problem, I used the following code: data=[0x00, 0x04, 0x04, 0xFF, 0xFF, 0xFF, 0x00, 0x00] result=dev.ctrl_transfer(0x2...
Jacquijacquie asked 21/6, 2016 at 11:58

6

Solved

Short version of what I want to accomplish: I have a foot pedal (INFINITY-IN-USB-1, if that's of any interest) that is implemented as a generic HID device, and I would like it to be behave as Ctrl ...
Nevsa asked 17/5, 2009 at 5:46

3

Solved

I am developing a KMDF virtual mouse driver. The general idea is a KMDF root enumerated non-filter driver which will be able to send output reports to the mouse and keyboard driver stacks. My dri...
Bogie asked 22/12, 2017 at 13:28

© 2022 - 2024 — McMap. All rights reserved.