python – pyusb:无法设置配置

我正在尝试制作一个脚本(在 Linux上),可以打开或关闭鼠标中的灯光.

这是我到目前为止的代码

import usb.core
import usb.util
import sys
interface = 0
dev = usb.core.find(idvendor=0x1532,idProduct=0x0017)

def main():

        if dev is None:
            print "device not found"

        else:
        print "device found"
        if dev.is_kernel_driver_active(interface) is True:
            print "but we need to detach kernel driver"
            dev.detach_kernel_driver(interface)
            print "claiming device"
            usb.util.claim_interface(dev,interface)


            print "release claimed interface"
            usb.util.release_interface(dev,interface)
            print "Now attaching the kernel driver again"
            dev.attach_kernel_driver(interface)
            print "all done"
return 0

if __name__ == '__main__':
    main()

这工作正常,但如果我尝试做:dev.set_configuration()

在claim_interface(dev,interface)之后

该脚本返回错误:usb.core.USBError:资源忙

在分离内核驱动程序后,为什么它仍然很忙?

解决方法

不确定这是否会解决,但是你的鼠标设置正确的udev规则是什么?我和朋友为我做的自定义设备有类似的问题,我通过添加如下规则解决了这个问题:
SUBSYstem !="usb_device",ACTION !="add",GOTO="device_rules_end"
SYSFS{idvendor} =="1532",SYSFS{idProduct} =="0017",SYMLINK+="mydevice"
MODE="0666",OWNER="<your-username-here>",GROUP="root"
LABEL="device_rules_end"

在我的/etc/udev/rules.d文件夹中.

HTH!

编辑:在添加规则之前,尝试使用sudo运行脚本.如果它将以这种方式工作,几乎可以肯定是一个权限设置将由上述规则修复.

相关文章

功能概要:(目前已实现功能)公共展示部分:1.网站首页展示...
大体上把Python中的数据类型分为如下几类: Number(数字) ...
开发之前第一步,就是构造整个的项目结构。这就好比作一幅画...
源码编译方式安装Apache首先下载Apache源码压缩包,地址为ht...
前面说完了此项目的创建及数据模型设计的过程。如果未看过,...
python中常用的写爬虫的库有urllib2、requests,对于大多数比...