0
votes
0answers
69 views

Get data from USB using Python

I am not understanding the USB protocol properly and so getting confused with my code to get data about the USB when I add it. I can't figure out where I am going wrong. My system is Windows 8 64 bit. ...
0
votes
1answer
133 views

how to detect multiple USB ports and read data from USB using python

I have been able to detect whenever a flash drive is inserted. However, (silly as it sounds) having trouble to detect if multiple USB be inserted. Also, i am having difficulty in writing the code to ...
1
vote
1answer
186 views

Using pyUSB to read data from ELM327 OBDII to USB device

I am having problems using the pyUSB library to read data from an ELM327 OBDII to USB device. I know that I need to write a command to the device on the write endpoint and read the received data back ...
0
votes
0answers
106 views

How to control Enttec Open DMX USB via Python?

I'm wondering is that possible to control lights connected to Enttec Open DMX USB via Python shell. If it is, how to?
1
vote
0answers
62 views

PyUSB library using too much CPU time

I have a piece of code that continuously monitors a USB HID device for input.The device is a infrared receiver for a remote control. I am trying to program using PyUSB which is a python wrapper for ...
3
votes
2answers
859 views

Pyusb on windows - no backend available

I'm trying to have my python application interface with an NFC device via USB. The best option seems to be pyusb, but I can't get it to connect to the libusb backend. I keep getting ValueError: No ...
2
votes
0answers
184 views

Opencv webcam with libusb driver python

I'm working with python and using wx for my GUI. I'm using OpenCv to capture frames from my webcam and this works fine when using the webcams default driver. However, I'm also trying to use pyUSB with ...
1
vote
1answer
613 views

libusb on Mac OS X - “ValueError: No backend available”

I'm running Mac OS X 10.8 with python 2.7. I installed libusb with MacPorts and it does work (tested my importing usb.core & usb.util). However, each time I try to access a device, I get the ...
0
votes
0answers
644 views

PyUSB - “usb_claim_interface: couldn't claim interface” error on OS X 10.7.4

The exact error is: usb.core.USBError: [Errno None] usb_claim_interface: couldn't claim interface I'm using pydev 1.0 (with libusb 1.0.9) to interface with a sensor. I've tried fiddling with various ...
0
votes
1answer
352 views

import hid in python results in error “hid.so: undefined symbol: libusb_open”

I'm trying to install cython-hidapi to read a USB on my Ubuntu 12.04. I've followed the instructions from https://github.com/gbishop/cython-hidapi and installed the following versions: lib-usb == ...
1
vote
1answer
239 views

libusb installed- but pyUSB backend not found

I am trying to design a GUI using wxGlade for a USB device. The pyUSB portion of the code has been added to the python code generated by Glade. However, there is an error. 'No backend available' ...
0
votes
1answer
375 views

pyUSB Not Discovering Devices

So, I've installed libusb and pyUSB on my OS X Lion (10.7.3) machine, and I have the following script running: import usb import time if __name__ == "__main__": while True: busses = ...
0
votes
1answer
236 views

Controlling electronic components with USB?

I want to try something that I imagine is somewhat simple. I want to have a USB cable with an LED on it, and a python script that would have 2 possible arguments: "on" and "off". This would toggle the ...
0
votes
1answer
694 views

libusb 1.0 installation, for XP, for noob

I seem to be a fairly reasonable programmer once the configuration is set up, but am a noob at yak shaving, especially when there is a confusing choice of different yaks. I am enjoying learning ...
0
votes
2answers
163 views

Debug crashing C Library used in Python project

complete Python noob here (and rusty in C). I am using a Mac with Lion OS. Trying to use NFCpy, which uses USBpy, which uses libUSB. libUSB is crashing due to a null pointer but I have no idea how to ...
0
votes
2answers
332 views

NFCPY/libUSB crashing running examples

I installed NFCPY, pyUSB and libusb on Mac Lion. I am using the common ACR122U NFC card reader and when I tried to run any of the examples it crashes. I know many people are using this same reader ...
0
votes
1answer
191 views

java: No Endpoint found, but python works

I want to try out the java libusb from http://libusbjava.sourceforge.net and cant even connect to my device... I had this python code before: def discover(): my_device = None for bus in ...
3
votes
2answers
2k views

pyusb: cannot set configuration

I am trying to make a script (on linux) that can turn a light in my mouse on or off. This is the code I have so far: import usb.core import usb.util import sys interface = 0 dev = ...
5
votes
5answers
5k views

Simple way to query connected USB devices info in Python?

How can we query connected USB devices info in Python? I want to get UID Device Name (ex: SonyEricsson W660), path to device (ex: /dev/ttyACM0) And also what would be the best Parameter out of above ...
2
votes
1answer
188 views

libusb seems to fail under a class coding structure but works without one?

I have a simple working example using Python/NXT/libusb as follows (note: using Lego's NXT which has a USB interface): import nxt.locator from nxt.motor import * def flip_cube(b): m_arm = ...
2
votes
1answer
2k views

Pyusb on Windows 7 cannot find any devices

So I installed Pyusb 1.0.0-alpha-1 Under Windows, I cannot get any handles to usb devices. >>> import usb.core >>> print usb.core.find() None I do have 1 usb device plugged ...
0
votes
1answer
1k views

pyusb won't install

I'm trying to setup some python scripts for controlling low-level USB functions. In order to do this, I've found that two libraries need to be installed: libusb and pyusb. I first installed libusb ...
6
votes
2answers
1k views

Why does PyUSB / libusb require root (sudo) permissions on Linux?

I have been toying around with PyUSB lately, and found that it works beautifully on Linux (Ubuntu has libusb 0.1 and 1.0, as well as OpenUSB)... but only if I run the program with root privileges ...
8
votes
7answers
1k views

Input from 20+ microphones

I've been asked (if it's possible) to write a program monitoring the input of at least 20 microphones, on a single computer. Currently I'm prototyping in python (2.6), on a Ubuntu system using Alsa. ...
1
vote
0answers
2k views

Python libusb pyusb “mach-o, but wrong architecture”

I am having some trouble with the pyusb module. I have narrowed down the problem to a single line, and have created a small example script to replicate the error. #!/usr/bin/env python """ This ...
3
votes
1answer
2k views

USB - sync vs async vs semi-async (partially answered now)

Updates: I wrote an asynchronous C version and it works as it should. Turns out the speed issue was due to Python's GIL. There's a method to fine tune its behavior. sys.setcheckinterval(interval) ...
2
votes
3answers
2k views

Some help understanding async USB operations with libusb-1.0 and ctypes

Alright. I figured it out. transfer.flags needed to be a byte instead of an int. Silly me. Now I'm getting an error code from ioctl, errno 16, which I think means the device is busy. What a ...