Questions tagged [input-devices]

Anything related to input devices, i.e. hardware devices (e.g. a mouse, a keyboard, a webcam, etc.) used to gather information from the outside world and converting them into a digital format suitable for processing by a machine.

Input devices are hardware devices used to gather information from the outside world. The information is then converted into a digital format suitable for processing by a machine.

The main input device types are:

  • keyboard
  • pointing device (mouse, touchscreen)
  • joystick
  • optical (digital camera, scanner)
  • audio (microphone)
83 questions
1
vote
0 answers

how to Record Sound by selecting Input devices

I'm developing a program where it can record sound using many input devices (MIC). Therefore I can get inputs from many input devices at the same time. But when I'm trying it with "MCI strings" there's no place to specify the device ID. I takes only…
1
vote
1 answer

Get audio input list in VB.net

I'm Developing a voice recording system with the help of USB audio cards. Therefore I need to get the list of audio input devices to a listbox where I can select the audio input device. When I attempt to record, always the default audio device will…
chanuwick
  • 43
  • 2
  • 11
1
vote
1 answer

Rename capture devices with C#, is it possible?

Can I rename the capture devices with C#? Something like this: to
grijalvaromero
  • 589
  • 1
  • 6
  • 20
1
vote
1 answer

Android debugging on Intellij/Android Studio - Forcing me to run on a virtual device

On many conventional Android projects, I can run my physical device plugged in the USB just fine once a build is complete and ran. However, on certain projects, like a project I have exported from Unity, forces me to run on a android virtual device,…
apollow
  • 1,250
  • 2
  • 14
  • 22
1
vote
1 answer

How would I use a second input device in maya to affect controls separately to the mouse?

Not sure if I'm in the right place but not having much luck finding anything out. What I wanted to try and do is create a plugin for autodesk software (namely maya) that allows a secondary input device to control things like the viewport camera.…
Taylor
  • 1,700
  • 4
  • 17
  • 18
0
votes
1 answer

Finding out input devices connected to the system through an ASP.NET webpage

I am using ASP.NET and C# in my project. I have a requirement where I need to find out list of input devices that are connected to the user's computer. For instance, if he has a scanner and a webcam connected then I need to populate scanner and…
Priyank Patel
  • 6,898
  • 11
  • 58
  • 88
0
votes
0 answers

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 developed a python code using the uEye API to…
lagoon
  • 1
0
votes
0 answers

Python-Validity on Garuda Linux Dragonized | `..dependency fprintd required by input-devices-support..`

I'm trying to install the whole python validity with 'yay' in garuda-linux, but i don't get to delete fprintd from the system: removing fprintd breaks dependency 'fprintd' required by input-devices-support. I'm actually new to arch, and I don't seem…
Dlastov
  • 1
  • 2
0
votes
0 answers

Decoding Spaceball 5000 axes -- how to convert two bytes to an int in a nonstandard way

I'm trying to decode serial packets from an old serial Spaceball 5000, and despite searching I can't find a reliable piece of code to translate the data I'm getting (yes, I've looked at the code that says the 5000 uses the magellan protocol, but the…
vputz
  • 163
  • 8
0
votes
0 answers

Free solution for configuring TrackPoint and middle mouse click for zoom functionality on MacOS apps?

I'm looking for a way to customize the functionality of my ThinkPad TrackPoint Keyboard II so that the middle click button and trackPoint can control zoom just like the mouse scroll wheel does within MacOS apps( e.g. Miro ). Could anyone guide me on…
Manny Adumbire
  • 366
  • 4
  • 11
0
votes
0 answers

How to remount audio and midi drivers on MacOS BigSur to recognise audio interface?

I got a question that Chat GPT can't seem to help me with If I dont restart my macbook (Big Sur), my eleven rack audio interface will not be recognised. I dont want to have to restart my computer everytime i want to plug in my eleven rack audio…
Ilia
  • 43
  • 9
0
votes
0 answers

Issue with QMediaDevices::videoInputs(): return empty list but Qt Camera example works fine

I'm trying to use QMediaDevices just to grab the list of cameras input. QMediaDevices::videoInputs() return an empty list; no error is thrown in compilation time. On run-time I got a sort of warning / log: Available HW decoding frameworks: …
Buzz
  • 1,102
  • 1
  • 9
  • 24
0
votes
0 answers

VBA - How to use a drawing tablet with inkPicture control?

It's been a while that I'm trying to find a solution through Microsoft documents and on the internet in general with no success... what i want to do is: when the userform that has the inkPicture control is activated, detect if there is a drawing…
Peter
  • 1
  • 1
0
votes
3 answers

polling joystick C#

i have an application that records a date/time when the space bar is pressed unfortunately, the window doesn't always have focus, for various reasons. eg virus checker popup, itunes update, windows update, etc so what i though would be a cool idea…
bumperbox
  • 10,166
  • 6
  • 43
  • 66
0
votes
1 answer

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 application. It is not AngularJS .It is Angular 14 with…