Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
14 views

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:...
Matias Collado's user avatar
0 votes
1 answer
441 views

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 ...
The Great ReLLeRtR's user avatar
1 vote
0 answers
1k views

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 – ...
Martin Kakhuis's user avatar
0 votes
0 answers
93 views

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 ...
lagoon's user avatar
  • 1
0 votes
2 answers
2k views

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 ...
Richard Gale's user avatar
  • 1,952
1 vote
0 answers
1k views

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 ...
Leon's user avatar
  • 25
1 vote
2 answers
1k views

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 ...
MasterKneater's user avatar
1 vote
1 answer
1k views

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 ...
Giordano Souza's user avatar
-1 votes
1 answer
683 views

When trying to read input_events from /dev/input/event16 I noticed that the size of the buffer I'm reading into may cause an exception. Here is the code I wrote: public static void main(String[] ...
user2887596's user avatar
1 vote
2 answers
2k views

I am using Ubuntu 18.0.4.4 LTS with a home-brew Arduino-based USB joystick attached. The OS sees the device at both /dev/input/js0 and /dev/input/event5 and jstest works with it: $ jstest /dev/...
Bram's user avatar
  • 8,453
0 votes
0 answers
385 views

Right now I'm reading directly from /dev/input/eventX. Is there some library or api that would convert the byte stream for me? Below is the code I'm running, sample input and output. int main (void) {...
willpnw's user avatar
  • 785
1 vote
1 answer
5k views

What I want to do I'm writing a daemon which listen to the input devices for keys presses and send signals via D-Bus. The main goal is to manage audio volume and screen backlight level by requesting ...
Damien Flament's user avatar
1 vote
0 answers
1k views

In an Arch Linux VM on Virtualbox, the mouse is present and moves as expected, however it cannot select or click. It is a recent behavior after an update. According to this post, it could be related ...
imriss's user avatar
  • 1,991
2 votes
2 answers
521 views

I'm trying to write a Linux daemon that needs to take input from a keyboard-like (HID) device - it's not the console keyboard, but a second device (it's actually a 1D barcode scanner if it makes any ...
code9016's user avatar
0 votes
0 answers
155 views

I am new to kernel hacking and I am wanting to know if there is a way to find all IRQs that HID mice drivers have registered with the kernel. Edit** I need to know how find the correct irq given ...
Dustin Colten McAfee's user avatar
0 votes
0 answers
77 views

I have a USB scanner which I connect and use through a DLL provided by the manufacturer. these are the functions I use to access it: [DllImport(".\\lib\\HsId600s.dll", SetLastError = true, ...
Ben Quan's user avatar
  • 839
1 vote
1 answer
3k views

I'm writing a program that check every /dev/input/eventX and using ioctl I can get it capabilities and check what it is (mouse, keyboard, touch screen). Now I need to check certain USB out(port) if ...
Nick S's user avatar
  • 1,369
0 votes
1 answer
705 views

I have some Python code that interacts with a wireless USB numeric keypad. I'd like to be able to discover the device by name, but shows up as multiple input devices. In /dev/input/by-id: # ls -l /...
larsks's user avatar
  • 318k
0 votes
1 answer
350 views

i am using jssc to read values from serial ports.once i write to the serial port the following callback is getting called . within that callback i can get values from the event and from serial port ...
Priyamal's user avatar
  • 2,999
1 vote
1 answer
5k views

I am working on a Windows Forms Application that should get data from a USB Scale. The USB scale is handled like a Keyboard. If someone puts something on the scale, the scale starts to type the weight ...
Sardar Agabejli's user avatar
1 vote
0 answers
831 views

I am currently building a device and its driver in an embedded Android. The device is basically an embedded Linux behaving like a touchscreen. The device and the embedded Android are connected with ...
GautierD's user avatar
2 votes
2 answers
2k views

When I say stdin, I am referring to the stream referred to by fd = 0. I am taking an OS course which covers block and character devices. It specifically said that the keyboard is a character device. ...
Radu Szasz's user avatar
  • 1,041
1 vote
1 answer
3k views

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 ...
chanuwick's user avatar
4 votes
2 answers
2k views

I have created an input device driver that I use for controlling mouse/keyboard from an app. Everything works so far, I can generate input events for both keyboard and mouse from within the app. The ...
Leon van Noord's user avatar
8 votes
1 answer
5k views

I receive xy data from my network and i would like to control the mouse position using linux on wayland. I've seen many source codes using X libs or X apps but it will not work on wayland. I also ...
Erwan Douaille's user avatar