<?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[在wsl2中运行ros2 run joy joy_node接收不到手柄信息]]></title><description><![CDATA[<p dir="auto">手柄已通过usbipd共享给wsl，wsl中jstest能读取手柄信息，就是ros无法读到，/joy已发布，但没有任何消息</p>
]]></description><link>https://fishros.org.cn/forum/topic/4636/在wsl2中运行ros2-run-joy-joy_node接收不到手柄信息</link><generator>RSS for Node</generator><lastBuildDate>Mon, 14 Sep 2026 18:50:23 GMT</lastBuildDate><atom:link href="https://fishros.org.cn/forum/topic/4636.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 14 Nov 2025 04:26:31 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to 在wsl2中运行ros2 run joy joy_node接收不到手柄信息 on Fri, 14 Nov 2025 15:22:44 GMT]]></title><description><![CDATA[<p dir="auto">最有可能的原因是设备路径不匹配，joy_node默认可能使用不同的设备路径，你可以明确指定一下路径，命令参考（注意设备路径）：</p>
<pre><code>ros2 run joy joy_node --ros-args -p dev:=/dev/input/js0
</code></pre>
<p dir="auto">还有可能是权限问题，参考如下命令修复：</p>
<pre><code># 确认当前设备权限
ls -la /dev/input/js*

# 如果权限不是666，需要修改
sudo chmod a+rw /dev/input/js0
 
# 或者将用户加入input组
sudo usermod -a -G input $USER
</code></pre>
]]></description><link>https://fishros.org.cn/forum/post/19264</link><guid isPermaLink="true">https://fishros.org.cn/forum/post/19264</guid><dc:creator><![CDATA[若海]]></dc:creator><pubDate>Fri, 14 Nov 2025 15:22:44 GMT</pubDate></item></channel></rss>