<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[原装和国产ps3手柄ros驱动程序]]></title><description><![CDATA[<p dir="auto"><a href="https://www.bwbot.org/products/xiaoqiang-4-pro" target="_blank" rel="noopener noreferrer">小强主页</a></p>
<p dir="auto">ps3手柄的ros驱动程序为joystick_drivers包中的ps3joy,这份驱动对索尼原装手柄支持较好，但是对国产ps3手柄的支持存在问题。我们在ps3joy的基础上进行了修改，增加了一个ps3joyfake_node.py脚本作为国产手柄的驱动，包源代码地址在<a href="https://gitee.com/BlueWhaleRobot/joystick_drivers.git" target="_blank" rel="noopener noreferrer">这里</a>:。下文以小强为例，演示这个包的安装步骤和简略的使用方法</p>
<h3>安装步骤</h3>
<p dir="auto">ssh进入小强ros工作空间，下载源码后编译，完成安装<br />
小强镜像中默认已经安装此软件包，可以跳过这一步骤。</p>
<pre><code class="language-bash">ssh xiaoqiang@192.168.xxx.xxx
cd Documents/ros/src/
git clone https://gitee.com/BlueWhaleRobot/joystick_drivers.git
cd ..
catkin_make
# 如果提示下列错误
error spnav.h no such file
# 先安装下面这个包，然后重新执行catkin_make
sudo apt-get install libspnav-dev
</code></pre>
<h3>快速使用方法</h3>
<p dir="auto"><code>ps3joyfake_node.py</code>启动后，它会将蓝牙接收的手柄按键数据转换成标准的joy msg，同时以<code>/joy</code>为话题在ros中发布，即<code>ps3joyfake_node.py</code>一个文件相当于<code>ps3joy.py + joy_node</code>两个文件，在实际使用中不必再开启<code>joy_node</code>节点。</p>
<h4>1.将手柄与usb蓝牙适配器进行绑定，只需绑定一次，下次直接跳过这个步骤</h4>
<p dir="auto"><code>如果是手柄是和小强同时购买，那么我们已经提前为您配对，可以跳过此步骤。</code><br />
将手柄通过usb数据线接入主机，usb蓝牙适配器也插上主机</p>
<pre><code class="language-bash">sudo bash
rosrun ps3joy sixpair
</code></pre>
<p dir="auto">此时会得到类似下图的输出,current和setting的mac地址一样说明绑定成功</p>
<pre><code class="language-bash">Current Bluetooth master: 00:22:b0:d0:5a:09
Setting master bd_addr to 00:22:b0:d0:5a:09

# 如果出现下述错误
Current Bluetooth master: 00:1b:dc:00:07:3c
Unable to retrieve local bd_addr from `hcitool dev`.
Please enable Bluetooth or specify an address manually.
# 先运行
hciconfig hci0 reset
# 如果运行
hciconfig hci0 reset
# 出现错误
# Can't init device hci0: Operation not possible due to  

# 运行 
rfkill unblock all
# 然后运行
hciconfig hci0 reset
# 重新运行
rosrun ps3joy sixpair
</code></pre>
<p dir="auto">绑定设置完成,断开手柄与主机的usb连接</p>
<p dir="auto">ctrl+D　退出root模式</p>
<h4>2.将手柄与usb蓝牙适配器配对</h4>
<pre><code class="language-bash">#确保蓝牙接收器已经插入主机usb口
sudo bash
rosrun ps3joy ps3joyfake_node.py
</code></pre>
<p dir="auto">正常会出现下面的提示</p>
<pre><code class="language-bash">root@xiaoqiang-desktop:~# rosrun ps3joy ps3joyfake_node.py 
No inactivity timeout was set. (Run with --help for details.)
Waiting for connection. Disconnect your PS3 joystick from USB and press the pairing button.
#如果提示下列错误
ImportError: No module named bluethooth
#请先安装下列包,然后重新运行
sudo apt-get install libbluetooth-dev
sudo pip install PyBluez 
</code></pre>
<p dir="auto">按一下下图中的手柄配对键<br />
<br /><br />
<img src="http://community.bwbot.org/uploads/files/1479882161376-14.3.png" alt="alt text" class=" img-responsive img-markdown" /><br />
<br /><br />
配对成功的话，上面的窗口会输出类似下面的结果</p>
<pre><code class="language-bash">root@xiaoqiang-desktop:~# rosrun ps3joy ps3joyfake_node.py
No inactivity timeout was set. (Run with --help for details.)
Waiting for connection. Disconnect your PS3 joystick from USB and press the pairing button.
Connection activated
</code></pre>
<p dir="auto">配对完成</p>
<h4>3.查看手柄输出</h4>
<pre><code class="language-bash">新开一个窗口，打印按键输出
rostopic echo /joy
</code></pre>
<p dir="auto">正常会出现下面的类似结果</p>
<pre><code class="language-yaml">header:
  seq: 297
  stamp:
    secs: 1488877867
    nsecs: 535818099
  frame_id: ''
axes: [0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.21316899359226227, 0.0]
buttons: [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
</code></pre>
<p dir="auto">从上面可以看到第４个button被按下了</p>
<h4>4.启动相关的joy msg处理节点</h4>
<p dir="auto">注意不要再启动joy_node</p>
<pre><code class="language-bash">#以小强为例,启动下列launch文件后就可以遥控小强移动了
roslaunch turtlebot_teleop ps3fakexiaoqiang_teleop.launch
</code></pre>
<h3>购买带手柄的小强用户，还可以根据<a href="http://community.bwbot.org/topic/126">这篇教程</a>使用手柄</h3>
<p dir="auto">进行步骤1绑定时，如果提示找不到手柄设备，无法绑定，可以执行下面两个步骤以解决问题：<br />
1.点击系统桌面右上角的蓝牙图标，将连接着的蓝牙手柄服务关闭<br />
<img src="/assets/uploads/files/1523188912986-img_1067-resized.jpg" alt="0_1523188908187_IMG_1067.JPG" class=" img-responsive img-markdown" /><br />
<img src="/assets/uploads/files/1523188927451-img_1066-resized.jpg" alt="0_1523188923058_IMG_1066.JPG" class=" img-responsive img-markdown" /><br />
2.重新插拔手柄，然后重新运行绑定指令</p>
<p dir="auto"><a href="https://www.bwbot.org/products/xiaoqiang-4-pro" target="_blank" rel="noopener noreferrer">小强主页</a><br />
<a href="https://community.bwbot.org/topic/110" target="_blank" rel="noopener noreferrer">返回目录</a></p>
]]></description><link>http://community.bwbot.org/topic/169/原装和国产ps3手柄ros驱动程序</link><generator>RSS for Node</generator><lastBuildDate>Tue, 10 Mar 2026 09:28:14 GMT</lastBuildDate><atom:link href="http://community.bwbot.org/topic/169.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 07 Mar 2017 09:16:25 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Thu, 02 Jan 2020 08:25:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/1033">@Taiping</a> 在 <a href="/post/1680">原装和国产ps3手柄ros驱动程序</a> 中说：</p>
<blockquote>
<p dir="auto">Bluetooth: hci0: command 0x0c1a tx timeout</p>
</blockquote>
<p dir="auto">有16.04的机器吗，试试16.04。同时lsusb看一下蓝牙设备</p>
]]></description><link>http://community.bwbot.org/post/1681</link><guid isPermaLink="true">http://community.bwbot.org/post/1681</guid><dc:creator><![CDATA[xiaoqiang]]></dc:creator><pubDate>Thu, 02 Jan 2020 08:25:13 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Thu, 02 Jan 2020 02:02:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/20">@xiaoqiang</a> 完全没有其他蓝牙连接，我用sixad连接：<br />
sixad -s<br />
<strong>Can’t read version info hci0: Connection timed out (110)<br />
Can’t set scan mode on hci0: Connection timed out (110)</strong><br />
是不是因为蓝牙的问题，购买的蓝牙不同版本使得在Ubuntu 18.04上不好使？</p>
<p dir="auto">rfkill list<br />
0: hci0: Bluetooth<br />
Soft blocked: no<br />
Hard blocked: no</p>
<p dir="auto">dmesg | grep Bluetooth<br />
[   21.196279] Bluetooth: Core ver 2.22<br />
[   21.196295] Bluetooth: HCI device and connection manager initialized<br />
[   21.196300] Bluetooth: HCI socket layer initialized<br />
[   21.196302] Bluetooth: L2CAP socket layer initialized<br />
[   21.196304] Bluetooth: SCO socket layer initialized<br />
[   45.252264] Bluetooth: BNEP (Ethernet Emulation) ver 1.3<br />
[   45.252267] Bluetooth: BNEP filters: protocol multicast<br />
[   45.252276] Bluetooth: BNEP socket layer initialized<br />
[   45.268452] Bluetooth: RFCOMM TTY layer initialized<br />
[   45.268462] Bluetooth: RFCOMM socket layer initialized<br />
[   45.268469] Bluetooth: RFCOMM ver 1.11<br />
[  161.085862] Bluetooth: hci0: command 0x0c1a tx timeout<br />
[  330.974016] Bluetooth: hci0: command 0x0c52 tx timeout<br />
[  887.742238] Bluetooth: hci0: command 0x0c1a tx timeout<br />
[  889.758240] Bluetooth: hci0: command 0x0c13 tx timeout<br />
[  891.774231] Bluetooth: hci0: command 0x0c52 tx timeout<br />
[  912.510248] Bluetooth: hci0: command 0x0c1a tx timeout<br />
[  914.526244] Bluetooth: hci0: command 0x0c13 tx timeout</p>
]]></description><link>http://community.bwbot.org/post/1680</link><guid isPermaLink="true">http://community.bwbot.org/post/1680</guid><dc:creator><![CDATA[Taiping]]></dc:creator><pubDate>Thu, 02 Jan 2020 02:02:01 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Tue, 31 Dec 2019 07:42:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/1033">@Taiping</a> 不清楚具体原因，没遇到这种情况。可能蓝牙设备被你系统其他程序占用了</p>
]]></description><link>http://community.bwbot.org/post/1679</link><guid isPermaLink="true">http://community.bwbot.org/post/1679</guid><dc:creator><![CDATA[xiaoqiang]]></dc:creator><pubDate>Tue, 31 Dec 2019 07:42:05 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Tue, 31 Dec 2019 07:23:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/1033">@Taiping</a> 在 <a href="/post/1659">原装和国产ps3手柄ros驱动程序</a> 中说：</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/20"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/20">@xiaoqiang</a></a></p>
<ol>
<li>
<p dir="auto">有线连接<br />
jstest-gtk<br />
<img src="/assets/uploads/files/1577503021592-selection_164.png" alt="Selection_164.png" class=" img-responsive img-markdown" width="869" height="588" /><br />
测试没有问题，图中为左边摇杆的数据。<br />
<strong>问题：有时候手柄会和电脑自动断开。</strong></p>
</li>
<li>
<p dir="auto">bluetooth连接<br />
a. 安装蓝牙驱动以及图形工具，插入手柄USB，查看如下<br />
<img src="/assets/uploads/files/1577503034168-selection_163.png" alt="Selection_163.png" class=" img-responsive img-markdown" width="752" height="576" /></p>
</li>
</ol>
<p dir="auto">b.将手柄与usb蓝牙适配器进行绑定<br />
sudo bash<br />
rosrun ps3joy sixpair<br />
Current Bluetooth master: 00:1a:7d:da:71:10<br />
Setting master bd_addr to 00:1a:7d:da:71:10<br />
绑定成功。</p>
<p dir="auto">c. 将手柄与usb蓝牙适配器配对<br />
按照步骤：断开usb后，先等配对指示灯不闪后，再执行“rosrun ps3joy ps3joyfake_node.py”，最后按手柄配对键就可以配对了。<br />
<strong>问题</strong>：<strong>在执行“rosrun ps3joy ps3joyfake_node.py”后，显示如下</strong><br />
<img src="/assets/uploads/files/1577503041303-selection_162.png" alt="Selection_162.png" class=" img-responsive img-markdown" width="636" height="183" /><br />
<strong>无法连接蓝牙。</strong><br />
<a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/20"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/20">@xiaoqiang</a></a> 请帮助解决一下，蓝牙设备连接的问题吧，谢谢！</p>
</blockquote>
]]></description><link>http://community.bwbot.org/post/1678</link><guid isPermaLink="true">http://community.bwbot.org/post/1678</guid><dc:creator><![CDATA[Taiping]]></dc:creator><pubDate>Tue, 31 Dec 2019 07:23:34 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Sat, 28 Dec 2019 03:18:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/20">@xiaoqiang</a></p>
<ol>
<li>
<p dir="auto">有线连接<br />
jstest-gtk<br />
<img src="/assets/uploads/files/1577503021592-selection_164.png" alt="Selection_164.png" class=" img-responsive img-markdown" width="869" height="588" /><br />
测试没有问题，图中为左边摇杆的数据。<br />
<strong>问题：有时候手柄会和电脑自动断开。</strong></p>
</li>
<li>
<p dir="auto">bluetooth连接<br />
a. 安装蓝牙驱动以及图形工具，插入手柄USB，查看如下<br />
<img src="/assets/uploads/files/1577503034168-selection_163.png" alt="Selection_163.png" class=" img-responsive img-markdown" width="752" height="576" /></p>
</li>
</ol>
<p dir="auto">b.将手柄与usb蓝牙适配器进行绑定<br />
sudo bash<br />
rosrun ps3joy sixpair<br />
Current Bluetooth master: 00:1a:7d:da:71:10<br />
Setting master bd_addr to 00:1a:7d:da:71:10<br />
绑定成功。</p>
<p dir="auto">c. 将手柄与usb蓝牙适配器配对<br />
按照步骤：断开usb后，先等配对指示灯不闪后，再执行“rosrun ps3joy ps3joyfake_node.py”，最后按手柄配对键就可以配对了。<br />
<strong>问题</strong>：<strong>在执行“rosrun ps3joy ps3joyfake_node.py”后，显示如下</strong><br />
<img src="/assets/uploads/files/1577503041303-selection_162.png" alt="Selection_162.png" class=" img-responsive img-markdown" width="636" height="183" /><br />
<strong>无法连接蓝牙。</strong></p>
]]></description><link>http://community.bwbot.org/post/1659</link><guid isPermaLink="true">http://community.bwbot.org/post/1659</guid><dc:creator><![CDATA[Taiping]]></dc:creator><pubDate>Sat, 28 Dec 2019 03:18:25 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Mon, 22 Oct 2018 06:44:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/697">@xiangxiang123</a>  多次短按试试，第1步是绑定（只用绑定一次），第2步才是配对（每次重启机器后都要操作一次）。第1步绑定成功后，断开usb和手柄连接，重启系统，然后直接进行第2步操作</p>
]]></description><link>http://community.bwbot.org/post/948</link><guid isPermaLink="true">http://community.bwbot.org/post/948</guid><dc:creator><![CDATA[xiaoqiang]]></dc:creator><pubDate>Mon, 22 Oct 2018 06:44:20 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Sun, 21 Oct 2018 13:07:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/7">@weijiz</a> 长按后5秒灯就不闪了，也没有提示配对成功。</p>
]]></description><link>http://community.bwbot.org/post/947</link><guid isPermaLink="true">http://community.bwbot.org/post/947</guid><dc:creator><![CDATA[xiangxiang123]]></dc:creator><pubDate>Sun, 21 Oct 2018 13:07:46 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Fri, 19 Oct 2018 09:11:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/697">@xiangxiang123</a> 在 <a href="/post/945">原装和国产ps3手柄ros驱动程序</a> 中说：</p>
<blockquote>
<p dir="auto">配对灯不闪</p>
</blockquote>
<p dir="auto">配对要一直按着不放直到配对成功。</p>
]]></description><link>http://community.bwbot.org/post/946</link><guid isPermaLink="true">http://community.bwbot.org/post/946</guid><dc:creator><![CDATA[weijiz]]></dc:creator><pubDate>Fri, 19 Oct 2018 09:11:27 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Fri, 19 Oct 2018 05:39:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/7">@weijiz</a> 手柄充了一晚上电之后能开了。配对的时候到了第二步，断开USB 配对灯不闪 再运行rosrun ps3joy ps3joyfake_node.py 之后出现waiting for connection. 按手柄配对键，依然没反应。</p>
]]></description><link>http://community.bwbot.org/post/945</link><guid isPermaLink="true">http://community.bwbot.org/post/945</guid><dc:creator><![CDATA[xiangxiang123]]></dc:creator><pubDate>Fri, 19 Oct 2018 05:39:22 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Thu, 18 Oct 2018 01:30:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/697">@xiangxiang123</a> 把手柄插入主机后运行lsusb看一下。把输出发过来。</p>
]]></description><link>http://community.bwbot.org/post/939</link><guid isPermaLink="true">http://community.bwbot.org/post/939</guid><dc:creator><![CDATA[weijiz]]></dc:creator><pubDate>Thu, 18 Oct 2018 01:30:51 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Wed, 17 Oct 2018 12:33:21 GMT]]></title><description><![CDATA[<p dir="auto">手柄按照教程上面去配对的时候，到了第二步手柄和蓝牙接收器配对，手柄的灯已经不是一起闪，后来全部灭了，终端也没有显示连接成功。但手柄再按配对按钮，灯不亮，而且重新接usb线灯也不亮。手柄充电后也没有任何反应。</p>
]]></description><link>http://community.bwbot.org/post/938</link><guid isPermaLink="true">http://community.bwbot.org/post/938</guid><dc:creator><![CDATA[xiangxiang123]]></dc:creator><pubDate>Wed, 17 Oct 2018 12:33:21 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Sat, 08 Sep 2018 02:53:53 GMT]]></title><description><![CDATA[<p dir="auto">手柄接上数据线在linux系统下会震动，忽略这样的震动就可以了，继续按照教程操作</p>
]]></description><link>http://community.bwbot.org/post/730</link><guid isPermaLink="true">http://community.bwbot.org/post/730</guid><dc:creator><![CDATA[bot]]></dc:creator><pubDate>Sat, 08 Sep 2018 02:53:53 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Thu, 17 May 2018 12:58:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/592">@jianjun</a> 可能是树莓派的问题，树莓派的蓝牙驱动好像有问题。你可以换电脑试试。</p>
]]></description><link>http://community.bwbot.org/post/620</link><guid isPermaLink="true">http://community.bwbot.org/post/620</guid><dc:creator><![CDATA[weijiz]]></dc:creator><pubDate>Thu, 17 May 2018 12:58:26 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Fri, 21 Sep 2018 06:38:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/7">@weijiz</a> 我是在树莓派3 上用Ubuntu系统，最后我还是没配对上，显示:</p>
<pre><code>No inactivity timeout was set. (Run with --help for details.)
Waiting for connection. Disconnect your PS3 joystick from USB and press the pairing button.
</code></pre>
<p dir="auto">我是按照您上面说的，先断开USB，等到配对灯灭了后再运行的ps3joyfake_node.py,之后按了很多次配对键都没配对成功。<br />
这是什么原因呢？</p>
]]></description><link>http://community.bwbot.org/post/616</link><guid isPermaLink="true">http://community.bwbot.org/post/616</guid><dc:creator><![CDATA[jianjun]]></dc:creator><pubDate>Fri, 21 Sep 2018 06:38:51 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Wed, 16 May 2018 00:59:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/592">@jianjun</a> 你可能用的不是小强系统。直接运行roscore，而且要一直运行，不能关闭。</p>
]]></description><link>http://community.bwbot.org/post/613</link><guid isPermaLink="true">http://community.bwbot.org/post/613</guid><dc:creator><![CDATA[weijiz]]></dc:creator><pubDate>Wed, 16 May 2018 00:59:02 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Tue, 15 May 2018 13:02:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/7">@weijiz</a> 输入你所说的命令后显示<br />
Fail to start startup.service: Unit startup.service not found.</p>
<p dir="auto">这是什么问题？</p>
]]></description><link>http://community.bwbot.org/post/612</link><guid isPermaLink="true">http://community.bwbot.org/post/612</guid><dc:creator><![CDATA[jianjun]]></dc:creator><pubDate>Tue, 15 May 2018 13:02:38 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Sun, 13 May 2018 11:28:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/592">@jianjun</a> 这是由于roscore没有启动，可能你把startup服务关闭里。运行</p>
<pre><code class="language-bash">sudo service startup start
</code></pre>
<p dir="auto">可以启动服务。</p>
]]></description><link>http://community.bwbot.org/post/609</link><guid isPermaLink="true">http://community.bwbot.org/post/609</guid><dc:creator><![CDATA[weijiz]]></dc:creator><pubDate>Sun, 13 May 2018 11:28:43 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Sun, 13 May 2018 08:59:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/20">@xiaoqiang</a> 在 <a href="/post/236">原装和国产ps3手柄ros驱动程序</a> 中说：</p>
<blockquote>
<p dir="auto">,</p>
</blockquote>
<p dir="auto">后来再重试了，rosrun ps3joy ps3joyfake_node.py后 出现：<br />
No inactivity timeout was set.(Run with --help for details.)<br />
Unable to register with master node [http://localhost:11311]:master may not be running yet. Will keep trying.</p>
<p dir="auto">这是什么问题？</p>
]]></description><link>http://community.bwbot.org/post/608</link><guid isPermaLink="true">http://community.bwbot.org/post/608</guid><dc:creator><![CDATA[jianjun]]></dc:creator><pubDate>Sun, 13 May 2018 08:59:54 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Sun, 13 May 2018 08:42:32 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/20">@xiaoqiang</a>  我和@wukefu 的情况一样 断开USB 配对灯不闪 再运行rosrun ps3joy ps3joyfake_node.py 之后出现waiting for connection. 按手柄配对键，依然没反应。</p>
]]></description><link>http://community.bwbot.org/post/607</link><guid isPermaLink="true">http://community.bwbot.org/post/607</guid><dc:creator><![CDATA[jianjun]]></dc:creator><pubDate>Sun, 13 May 2018 08:42:32 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Fri, 11 May 2018 10:56:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/20">@xiaoqiang</a> 你好，我按照您说的做了一遍，还是无法配对成功…</p>
]]></description><link>http://community.bwbot.org/post/605</link><guid isPermaLink="true">http://community.bwbot.org/post/605</guid><dc:creator><![CDATA[wukefu]]></dc:creator><pubDate>Fri, 11 May 2018 10:56:25 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Fri, 11 May 2018 10:51:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/7">@weijiz</a> 您好，已经进行过绑定了，图中可以看到usb与手柄已经绑定成功了</p>
]]></description><link>http://community.bwbot.org/post/604</link><guid isPermaLink="true">http://community.bwbot.org/post/604</guid><dc:creator><![CDATA[wukefu]]></dc:creator><pubDate>Fri, 11 May 2018 10:51:20 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Fri, 11 May 2018 08:05:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/590">@wukefu</a> 按配对键的时候手柄不能用usb连接电脑，但是上一部的绑定需要手柄和电脑用usb连接，因此会有一个断开的操作。断开usb时，手柄会自动触发蓝牙连接(手柄配对指示灯会闪)，此时就会导致不能配对成功，因为是usb断开引起的。<br />
正确操作是：断开usb后，先等配对指示灯不闪后，再执行“rosrun ps3joy ps3joyfake_node.py”，最后按手柄配对键就可以配对了</p>
]]></description><link>http://community.bwbot.org/post/602</link><guid isPermaLink="true">http://community.bwbot.org/post/602</guid><dc:creator><![CDATA[xiaoqiang]]></dc:creator><pubDate>Fri, 11 May 2018 08:05:40 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Thu, 10 May 2018 01:17:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/590">@wukefu</a> 你在操作这一步之前有没有通过USB数据线绑定？</p>
]]></description><link>http://community.bwbot.org/post/599</link><guid isPermaLink="true">http://community.bwbot.org/post/599</guid><dc:creator><![CDATA[weijiz]]></dc:creator><pubDate>Thu, 10 May 2018 01:17:08 GMT</pubDate></item><item><title><![CDATA[Reply to 原装和国产ps3手柄ros驱动程序 on Wed, 09 May 2018 14:56:25 GMT]]></title><description><![CDATA[<p dir="auto"><img src="/assets/uploads/files/1525877464784-reply.png" alt="0_1525877464432_reply.png" class=" img-responsive img-markdown" width="730" height="230" /><br />
您好，做到这一步后一直无法配对手柄和蓝牙适配器可能是什么问题呢？<br />
蓝牙适配器插在电脑上没有问题，手柄也按下了配对键。</p>
]]></description><link>http://community.bwbot.org/post/597</link><guid isPermaLink="true">http://community.bwbot.org/post/597</guid><dc:creator><![CDATA[wukefu]]></dc:creator><pubDate>Wed, 09 May 2018 14:56:25 GMT</pubDate></item></channel></rss>