83 questions
-1 votes
0 answers
14 views
How to rotate the input of a non-Wacom graphics tablet in Linux using xinput? [migrated]
I want to leave this solution here because it was difficult for me to find it or I didn't know how to look for it. I have a Gadnic graphics tablet (model Gotop T505, identified by lsusb as ID 08f2:...
-1 votes
1 answer
53 views
Python InputDevice stop inner While loop when button is pressed from a Bluetooth device
I am trying to implement a piece of code to record voice from a microphone and control this from a bluetooth device by pressing two different buttons for star and stop. i am able to detect button (...
0 votes
1 answer
445 views
How do I get a raw input device's proper display name in C#?
I am making a simple program to enumerate all of the devices currently connected to your Windows along with their pointers, then display the proper name for the device you clicked a button on your WPF ...
2 votes
4 answers
2k views
How to get battery level of a game controller from an Android application
I have developed an Android application that connects via Bluetooth to a gamepad controller and shows button presses, joy stick movements, etc made on the handheld controller on the Android device. ...
1 vote
0 answers
1k views
How to Create a Soundboard That Plays Audio Through the Microphone in a Voice Call?
I’ve been diligently searching for a solution on how to play audio (specifically audio files) through the microphone, but so far, I haven’t had any success. My goal is to create a soundboard – ...
1 vote
1 answer
1k views
How to identify a Bluetooth peripheral related to an input device? [closed]
I want to use multiple Bluetooth input devices on a Linux as /dev/input and write a program to handle their input event, but I need to vary its behavior depending on the source peripheral. How do we ...
0 votes
0 answers
95 views
python - multiprocessing module to read data from several external devices
I am currently working on a project that aims to capture photos with 4 cameras at the same time. For that, I have an Arduino that sends a trigger every second. I am using uEye cameras and I have ...
4 votes
0 answers
827 views
When enumerating devices using DirectInput, is there a way to get a device's full instance ID?
I'm the author of an open source tool (devreorder) that allows users to specify a stable order for their DirectInput devices. In order for it to work, I need to be able to consistently distinguish ...
0 votes
2 answers
2k views
Windows Input Device Signal Enhancements
We write software (C#) for Speech Recognition, up until a particular W10 update we had no problems with speech recognition (via usb Microphone/headset). We are now facing issues with recognition and ...
0 votes
1 answer
3k views
How to read data from serial port by Angular Web Application?
I have a simple Arduino device that created for reading RFID. It returns UID of the RFID tag to serial port of client PC.I need to read that value returned by Arduino device using Angular web ...
1 vote
0 answers
1k views
How to only list audio devices using FFmpeg?
I am doing an audio recording project using FFmpeg 5.0.1. To list all the available audio input devices for the user to select and use, I used the function avdevice_list_input_sources(). My code goes ...
2 votes
0 answers
1k views
How to identify devices and browsers from registered users accessing to my website
I'm trying to develop a feature for my own website that detects the specific devices that are accessing to my page and from which browser are entering my registered users. Something similar to what ...
1 vote
2 answers
1k views
p5.js - Getting an array of all available video devices (webcams) with id
I would like to use x to output a list of all connected webcams with ID. Unfortunately, I always get the following error message (see picture). Does anyone have an idea what this could be? I am ...
0 votes
1 answer
500 views
Convert ABS_X and ABS_Y into meaningful values
I am new to mapping a gaming controller and I am attempting to make sense of the ABX_X and ABS_Y values that return from the joystick. My goal is to take those values and turn them into "move ...
1 vote
1 answer
1k views
Is there a way to check for available microphones using pyaudio?
I was looking through PyAudio documentation and i found these two methods: 1: info.get('deviceCount') 2: p.get_default_input_device_info() Which returns: output 1: 3 output 2: IOError My pc ...