Tagged Questions

USB is an acronym for Universal Serial Bus, a standard for a serial host-to-device protocol defined by the USB Implementors Forum. Today, it the most commonly used method for connecting computers to peripherals such as keyboards, printers, phones, and data storage devices.

learn more… | top users | synonyms

44
votes
2answers
865 views

Multichannel USB recording with Java Sound API?

I'm trying to record/process some audio from three usb microphones with Java Sound on Snow Leopard (but can switch to Windows if it fixes things). Problem is, when I try to use the mixer that ...
26
votes
13answers
1k views

What's the easiest, most practical way to toggle several lightbulbs with a PC?

This question is mainly electronics related, but it also has a programming aspect. Some background on the problem We have a traffic light on a wall in our office. When people come in to the office, ...
21
votes
8answers
18k views

Linux USB: turning the power on and off?

How can I programmatically enable and disable the power to a particular USB port on Linux? Is such a thing even possible? (no -- see below) Mac answers appreciated as well! I was trying for a BOC ...
19
votes
1answer
587 views

Why is a USB bulk transfer with Perl's Device::USB cut off?

I ran this Perl code running on Linux: my $command = "\x{11}\x{22}\x{33}\x{44}\x{55}\x{66}\x{77}\x{88}\x{00}\x{00}\x{00}\x{00}\x{00}\x{00}\x{00}\x{00}\x{00}\x{00}\x{00}\x{00}"; # total of 20 bytes to ...
18
votes
3answers
7k views

How can I listen for 'usb device inserted' events in Linux, in Python?

I'd like to write a Python script for Amarok in Linux to automatically copy the stackoverflow podcast to my player. When I plug in the player, it would mount the drive, copy any pending podcasts, and ...
17
votes
10answers
634 views

Where can I start with programmable Hardware?

I've had a desire to learn at least a tiny bit about programming hardware for quite some time now and thought I'd ask here to get some starting points. I am a reasonably accomplished programmer with ...
17
votes
6answers
6k views

Working with USB devices in .NET

Using .Net (C#), how can you work with USB devices? How can you detect USB events (connections/disconnections) and how do you communicate with devices (read/write). Is there a native .Net solution ...
16
votes
6answers
11k views

Safe remove USB-Drive using Win32 API?

Anyone knows how to remove a USB drive using the win32 API? I do a lot of work on embedded systems and on one of these I have to copy my programs on a usb-stick an insert it into the target hardware. ...
15
votes
6answers
4k views

What (software) usb sniffers are available for windows?

Are there any software drivers for windows 7 (64-bit) that can report the data transferred between some application software and a usb device? I have tried snoopy ...
14
votes
3answers
12k views

How to sniff usb port under Windows?

From time to time I need to dump usb traffic under windows, mostly to support hardware under Linux, so my primary goal is to produce dump files for protocol analysis. For USB traffic, it seems that ...
13
votes
8answers
8k views

Control USB port's power?

Does anybody know how to control USB pins on a certain USB port? I think it is definately possible in assembler but what about C++ or C#? I want to be able to use USB battery as a power supply for ...
12
votes
2answers
385 views

Alternative to Cypress EZ-USB FX CY3671

This is a pretty special question and I'm not sure if stackoverflow is the right platform to ask it but I try anyway... I'm currently writing an implementation of JSR-80 (javax.usb) and just found ...
12
votes
7answers
799 views

USB programming

I want to program a microcontroller (AVR) to control some leds through USB. It's just out of interest in how to build and program USB devices. There are some AVR microcontrollers that support the USB ...
11
votes
3answers
2k views

iPhone app does not run on old device (3G, 3GS, …)

I have developed an app which works on iPhone 4 (iOS 4.3 & 5) (which used during developing). Now I have tried to test on 3GS (iOS 4.3.3) and 3G(iOS 4.2). But app does not load into these devices. ...
11
votes
2answers
5k views

Java USB library

Is there a good Java USB API i can use? I tried JUSB but it doesn't seem to work. It's also very old, no updates since 2001.
10
votes
1answer
231 views

Is there a Windows API to detect USB overcurrent?

I'm trying to write an application that will take specific action when it detects an overcurrent condition on any USB port. However, my googlefu is not able to come up with anything useful (though I ...
10
votes
3answers
971 views

How to make sure that a file was permanently saved on USB, when user doesn't use “Safely Remove Hardware”?

When I save a file on a USB within my delphi application, how can I make sure the file is really (permanently) saved on the USB, when "Safely Remove Hardware" is not performed (especially forgotten to ...
10
votes
5answers
12k views

How to communicate with a USB device under Windows and Java?

I'd like to communicate with a USB device under Windows and Java but I can't find a good library to do so. I don't want the user to have to install any extra hardware or device drivers to make this ...
10
votes
14answers
8k views

How to programatically unplug & replug an arbitrary USB device?

I'm trying to fix a non-responsive USB device that's masquerading as a virtual com port. Manual replugging works, but there may be up to 12 of these units. Is there an API command to do the ...
9
votes
1answer
85 views

Policing of USB Vendor IDs

Although not directly a programming question, I think I could find the best answer here. Why is the USB-IF policing the use of Vendor IDs and selling them? What happens to people who want to write ...
9
votes
2answers
252 views

Detect Arduino port in Python

I am using an Arduino for sensing using Python 2.7 on Windows XP, but the non-static nature of the USB-to-serial port translation is giving me a headache. With a physical serial port there is no issue ...
9
votes
5answers
1k views

Roll My Own Windows Joystick HID Driver?

I have a USB Joystick, and I want to write my own HID driver for it. Notably I want to inject delay between when the joystick input is received by Windows and when my application is notified of that ...
9
votes
5answers
7k views

Windows - Power off an usb device in software

I would like to power cycle an usb device through software on windows. I am doing development on a small usb power microcontroller. This chip will revert to native behavior on a power cycle and ...
9
votes
6answers
5k views

What is the best usb library to communicate with usb HID devices on Windows?

The library should; -Be easy to use and few lines of client code should accomplish much -Be as platform independent as possible. (In case of future ports to other platforms) -Have C++ bindings. -Be ...
9
votes
6answers
14k views

How to detect using c# if a pendrive is plugged into a USB port?

Is there a way to find out when in a LAN anyone plugs in a pendrive to the USB port? Programatically (in C# preferably) or through some tool. Basically I'd imagine a client application sits on each ...
8
votes
4answers
1k views

Using 3.1's USB host mode with Arduino

Is there a good tutorial for using an Arduino with an Android where the Android device is the USB host? (The Android device has OS version 3.1 (Honeycomb) or later). The only host program on the ...
8
votes
4answers
434 views

Using GIT on USB stick for “travelling code”

I have exhaustively searched for answers to my question here and on Google. I have found some great resources and learning tools for understanding Git and what it does, but I need to get some ...
8
votes
3answers
1k views

Acessing a serial to USB device with I/O kit

I have the following problem: I have a Wintec WBT-202 GPS device which has the ability to transmit the location data live as NMEA data over USB. Inside this USB it is just a USB to serial bridge which ...
8
votes
6answers
830 views

How to run C# Windows application from USB without installing .NET framework on client system

Is it possible to run a C# .NET Windows application (.exe) from pendrive or USB without installing the .NET framework on the client system? If so, how can I make it work?
8
votes
1answer
2k views

Controlling a USB power supply (on/off) with linux

Is it possible to turn on/off power supplies from USB manually with linux? There's this external USB cooling fan (the kind you use to cool yourself off, not the PC), and it would be nice to be able ...
8
votes
7answers
541 views

How to get USB devices List from Browser

What browser-based technology would allow me to query the client's currently connected USB devices - specifically name and device id of these. Of course, I'm ok with the client having to allow and ...
8
votes
6answers
14k views

Data collection with Android via USB

What would be the best way to access the USB as a serial port on a android device (HTC Magic) ? I am thinking about a OBD-II interface, can I do this on a startdard phone or more likely I'll need a ...
8
votes
1answer
3k views

How do I check whether a given USB device is plugged in?

Our winforms application supports a custom controller using the manufacturer's SDK, but there's no support to detect whether a device is present or not. How do I check whether a given USB device is ...
8
votes
4answers
10k views

How to get serial number of USB-Stick in C#

How do I get the internal serial number of a USB-Stick or USB-HardDrive in C#?
8
votes
8answers
798 views

How to have a computer flash a light

I'd like to have an application monitor written in C# monitoring a set of Forex trading positions. It would be connected via USB to a real set of "traffic lights" sat on a desk which it would use to ...
8
votes
12answers
5k views

How do I program a driver for a USB device for windows platform?

I am looking for a device that reads wiring voltages via a USB interface and returns the data. How would I go about programming something to interpret this data and what language would I use? edit: ...
7
votes
1answer
196 views

Linux: How to assign USB driver to device

This question is two-fold: 1- How do you manually detach a driver from a USB device and attach a different one? For example, I have a device that when connected automatically uses the usb-storage ...
7
votes
1answer
267 views

Can I control the architecture (32bit vs 64bit) when building a pyinstaller executable?

Short Question Is there any way to control / guarantee the architecture (32bit vs 64bit) when building a pyinstaller executable? Background I migrated from py2exe to pyinstaller because of the lack ...
7
votes
2answers
188 views

Need help to find the VID/PID of the usb drive connected to the system through java code

I need to find the vendor Id, Product Id of the usb drive connected to the system, through java code. Any suggestions...
7
votes
1answer
982 views

Find available USB devices Mac OS X

I was wondering if there was any way to see if a usb device (only specific ones) are plugged in and unplugged using objective c. All I need to know is if a device has been plugged in, such as an ...
7
votes
3answers
2k views

Delphi - How to get list of USB removable hard drives and memory sticks?

In my application (Delphi), I need to list all the USB storage devices. These can be either flash memory sticks or external storage drives. There is a Jvcl component JvDriveCombo, and it has the ...
7
votes
1answer
1k views

Consuming a USB HID device in Windows CE 6.0 using c#

I am working on an Embedded Windows CE project and am interested in accessing a USB HID device through one of its USB Host ports. All I really need to read are the raw HID spec packets. On a windows ...
7
votes
4answers
362 views

How to record a serial number in an executable?

I am trying to secure an application to only run from a specific USB disk. I have code to get the serial number from the device, but the only way I can make this work the way I want to is to manually ...
7
votes
1answer
4k views

How to emulate USB devices?

The rest of my team will make for my application a simple non-standard USB microphone, but until they finish it I will have to emulate it, for integration testing purposes. Is there any risk in a ...
7
votes
4answers
1k views

Programmatically differentiating between USB Floppy Drive and USB Flash Drive in Windows

On Windows (XP-7), is there a reliable way of programatically differentiating between USB floppy drives and USB flash drives in C++? At the moment, I'm using WMI to get updates when new ...
7
votes
3answers
9k views

How to find USB drive letter?

I'm writing a setup program to install an application to a USB drive. The application is meant to be used only from USB drives, so it would save an extra step for the user by automatically selecting ...
6
votes
1answer
301 views

Eject USB device via C#

I was looking for a short way to eject USB-devices via C#-code, so I coded a little class myself, yet it simply doesn't work. Since there's no popup that says "Lock success!" I assume that the problem ...
6
votes
2answers
212 views

How can I make a custom USB device show up in Windows as a COM Port?

I have developed a USB device that communicates with linux over a simple but proprietary interface and some custom Linux drivers. My goal is to port this to Windows without writing windows drivers. ...
6
votes
2answers
548 views

C# and USB HID Devices

I'm looking for one of either 2 things 1 - A working example of code using Florian's library from: http://www.florian-leitner.de/index.php/2007/08/03/hid-usb-driver-library/ This seems to be one of ...
6
votes
1answer
105 views

Is there a way to detect that a USB device is plugged in by detecting power draw rather than it's device driver?

I am building a system that needs to handle broken devices that may or may not have a working USB plug. Would like to know if can ask USB subsystem if a port is drawing power or not.

1 2 3 4 5 29