The input-devices tag has no wiki summary.
0
votes
0answers
12 views
How does a game receive input from a controller?
I'm sure I'll kick myself when I get the answer, but here goes...
Just out of curiosity, I am wondering how a game would receive input from a controller device. As we all know, in regular ...
0
votes
1answer
100 views
How can I list available input devices with haxe?
I would like to list all the input devices available when I launch an application, but I can't find a way to do that in the API.
How can I get a list of available keyboards, mice, gamepads, touch ...
3
votes
1answer
259 views
Access the Sony Playstation SixAxis Controller using C++ on Linux
I'm coding in C++ on Linux (Ubuntu 12.04 specifically) and would like to use the PlayStation SixAxis controller (the type that comes with the PS3) as an input device, ideally over bluetooth.
My ...
0
votes
0answers
124 views
How to use WPF inputdevice.touchdevice to report TouchDown with custom parameters?
I am using Microsoft Multipoint SDK to simulate multitouch for a WPF application.
Generally speaking, it is easy, since what I can do is just make a new class called "MultipointTouchDevice" which ...
4
votes
1answer
727 views
Android: enumerating the buttons on a gamepad
I have an Android device into which a gamepad can be connected (it's a totally standard XBox 360 controller, but I need to support other varieties as well). The gamepad is showing up as a InputDevice ...
0
votes
0answers
231 views
Finger Position on Touchpad
I would like to get the (x,y) coordinate being touched on a Logitech Wireless Touchpad. I am programming in Python and hope to use the touchpad as an input device to drive a microscope stage. I am not ...
0
votes
1answer
334 views
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 ...
1
vote
1answer
123 views
How to tell what device triggered a particular event in Delphi?
I'm wondering if there's an easy way to tell which input device triggered a particular GUI event.
For example: A TButton.OnClick event gets fired. Did the user trigger it with a keyboard press ...
2
votes
1answer
862 views
Android 3.0 Use Physical Keyboard Setting
Background:
I recently purchased a Motorola XOOM Tablet along with the Desktop Dock and Bluetooth Keyboard accessories.
The dock and keyboard work great, but when I take the tablet off the dock to ...
1
vote
2answers
2k views
/dev/input keyboard format
I've been playing around with capturing the input from my keyboard device:
/dev/input/by-path/platform-i8042-serio-0-event-kbd
for me, and I was wondering if there was any specification for what ...
1
vote
1answer
487 views
MacOS Virtual Input Devices
How can I create a virtual HID device in code? I'm trying to avoid writing a kernel extension to accomplish this, but it seems to be the only way. I need to be able to create virtual HID devices of ...
2
votes
1answer
708 views
How to capture a signature from an ePad in C# - windows forms?
I need to save a signature from an ePad device .. I would prefer to use the Microsoft.Ink InkPicture control but the ePad really zoom zooms the mouse pointer about. The ePad SDK samples didn't ...
0
votes
1answer
802 views
Windows Application: Raw Input Device Registration - Excluding desired sub-class device
In my Windows application, while registering for 'Raw Input Devices', I wish to register only mouse but the trackpad which is also a pointing device also gets registered.
In MSDN Documentation, Top ...
10
votes
6answers
6k views
Make a USB Device, Control It In Java
I'm thinking about making a physical controller (device?) with knobs, buttons, and LEDs. I'd like to interact with it using Java (respond to the knobs, light up LEDs, etc). The reason I mention Java ...
5
votes
1answer
900 views
How can you take ownership of a hid device?
What I would like to take ownership of a hid device that may already have been plugged in, consume it's output, while preventing others(X11 or terminal) from consuming it.
If I can help it, I don't ...
0
votes
3answers
2k views
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 ...
0
votes
1answer
305 views
How can I programmatically take a picture using a webcamera and save it to a file?
Preferably, answers will be in a .Net language. However, all answers are very welcome.
Thank you,in advance, for your assistance.
5
votes
5answers
683 views
How to use trackpad scrolling in .Net
My WinForms app uses the mouse wheel, subscribing to the Control.MouseWheel event. How can I get it to work with scrolling methods from other input devices, in particular "finger along the edge" ...
4
votes
7answers
681 views
What alternative user input techniques should be adopted in programming?
Programming is particularly different to, for example word processing due to the wealth of special symbols etc that need to be entered.
Of the current crop of new user interface techniques, which are ...
35
votes
9answers
42k views
JavaScript: Check if mouse button down?
Is there a way to detect if a mouse button is currently down in JavaScript?
I know about the "mousedown" event, but that's not what I need. Some time AFTER the mouse button is pressed, I want to be ...
2
votes
3answers
354 views
What is the most efficient way to populate a time (or time range)?
While plenty of solutions exist for entering dates (such as calendars, drop-down menus, etc.), it doesn't seem like there are too many "standard" ways to ask for a time (or time range).
I've ...