赞
踩
3dconnexion 早在2014年就不更新对linux系统的驱动,因此安装驱动需要参考另一个网站:https://spacenav.sourceforge.net/
先安装依赖库
sudo apt install libxext-dev libxrender-dev libxmu-dev libxmuu-dev
sudo apt-get install libxtst*
sudo apt-get install libx11*
sudo apt-get install libxi-dev
在自定义的安装目录下,执行以下命令下载源码并安装
git clone https://github.com/FreeSpacenav/spacenavd.git
cd spacenavd
./configure
make
sudo make install
执行以下命令将该驱动设为开机启动
sudo ./setup_init
sudo /etc/init.d/spacenavd start
过程中可能会输出以下像报错的信息,是正常输出,不用理会
cat: /etc/inittab: 没有那个文件或目录
default runlevel detection failed.
执行以下命令下载源码并安装
git clone https://github.com/FreeSpacenav/libspnav.git
cd libspnav
./configure
make
sudo make install
将spacemouse通过附带的USB线连接到电脑USB。libspnav程序包中给了几个测试用例,执行以下命令进行测试
cd libspnav/examples/simple
make
./simple_af_unix
此时移动spacemouse的摇杆,应该能看到以下输出:
spacenav AF_UNIX protocol version: 1 Device: 3Dconnexion SpaceMouse Wireless Path: /dev/input/event6 Buttons: 2 Axes: 6 got motion event: t(0, 0, 0) r(-15, 0, 0) got motion event: t(0, -5, 0) r(-32, 0, 0) got motion event: t(-2, -21, 0) r(-58, 0, 0) got motion event: t(-6, -17, 0) r(-60, 0, 0) got motion event: t(-3, 0, 0) r(-60, 0, 0) got motion event: t(0, 0, 0) r(-8, 0, 0) got motion event: t(0, 0, 0) r(-16, 0, 0) got motion event: t(0, 0, 0) r(0, 0, 0) got motion event: t(0, 0, 9) r(-19, 0, 0) got motion event: t(-45, 0, 56) r(-78, 0, -38) got motion event: t(-92, 0, 78) r(-99, 0, -78) got motion event: t(-122, 0, 80) r(-105, 0, -104) got motion event: t(-123, 0, 75) r(-103, 0, -105) got motion event: t(-128, 0, 86) r(-123, -10, -115) got motion event: t(-143, 0, 105) r(-142, -31, -131)
表明驱动安装完成。
连接设备后,在终端输入lsusb
查看哪一行后面有spacemouse字样的就是连接的设备;没有的话,连接设备前后分别运行lsusb
看多了哪一个设备信息。我的spacemouse信息如下:
Bus 001 Device 010: ID 256f:c62e
其中冒号前面的256f
为Vendor_id
,后面的c62e
为Product_id
,后面会用到。
python的hid库(pip install hidapi)可以用来读取usb设备信号,但设备的默认权限仅允许root用户访问,一种方法是执行python程序时前面加sudo,但sudo python
默认执行的是ubuntu原装的py2。如果想用任意的python的hid库读取信号,需要提高spacemouse设备的权限,步骤如下:
cd /etc/udev/rules.d
sudo touch 99-spacemouse.rules
sudo gedit 99-spacemouse.rules
在新建的99-spacemouse.rules
中添加以下内容
SUBSYSTEM=="usb", ATTRS{idVendor}=="256f", ATTR{idProduct}=="c62e", MODE="0666"
将其中的256f
和c62e
替换为自己使用的spacemouse的Vendor_id
和Product_id
。
下载robosuite
git clone https://github.com/ARISE-Initiative/robosuite.git
修改robosuite/demos/demo_device_control.py
中的下面两行,主要是修改设备为spacemouse
,以及修改vendor_id
和product_id
。
parser.add_argument("--device", type=str, default="spacemouse", choices=['spacemouse', 'keyboard'])
device = SpaceMouse(vendor_id=0x256f,product_id=0xc62e, pos_sensitivity=args.pos_sensitivity, rot_sensitivity=args.rot_sensitivity)
之后运行demo_device_control.py
即可使用spacemouse控制仿真环境中的机械臂。
完~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。