<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Aero Hand &#8211; GTROB</title>
	<atom:link href="https://www.gtrob.com/archives/category/maker-school/hand/aerohand/feed" rel="self" type="application/rss+xml" />
	<link>https://www.gtrob.com</link>
	<description>机器人开源社区，家庭服务机器人 ,个人服务机器人-IBOAI</description>
	<lastBuildDate>Wed, 25 Mar 2026 16:37:40 +0000</lastBuildDate>
	<language>zh-Hans</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.gtrob.com/wp-content/uploads/2019/12/cropped-GTROBTLOGO512512-32x32.png</url>
	<title>Aero Hand &#8211; GTROB</title>
	<link>https://www.gtrob.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">209238892</site>	<item>
		<title>Aero Hand固件</title>
		<link>https://www.gtrob.com/archives/2586</link>
					<comments>https://www.gtrob.com/archives/2586#respond</comments>
		
		<dc:creator><![CDATA[高天]]></dc:creator>
		<pubDate>Tue, 24 Mar 2026 16:47:55 +0000</pubDate>
				<category><![CDATA[Aero Hand]]></category>
		<category><![CDATA[机器人项目]]></category>
		<category><![CDATA[灵巧手]]></category>
		<guid isPermaLink="false">https://www.gtrob.com/?p=2586</guid>

					<description><![CDATA[本指南涵盖架构、构建选项以及ESP32‑ ...]]></description>
										<content:encoded><![CDATA[
<p class="has-medium-font-size">本指南涵盖架构、构建选项以及ESP32‑S3（Seeed Studio XIAO ESP32S3）用于驱动Feetech HLS3606M舵机的详细通信协议规范。</p>



<h2 class="wp-block-heading">概述</h2>



<p class="has-medium-font-size">固件提供了一种紧凑的固定16字节二进制串行协议，用于控制七个执行器（拇指和手指）以及查询遥测数据（位置、速度、电流、温度）。它还在板上实现了归位、设置ID、持久微调和安全行为，从而使主机PC保持简单。</p>



<h4 class="wp-block-heading has-medium-font-size">通道（7个）：</h4>



<ol class="wp-block-list">
<li class="has-medium-font-size">拇指腕掌关节外展执行器 </li>



<li class="has-medium-font-size">拇指腕掌关节屈曲执行器</li>



<li class="has-medium-font-size">拇指肌腱执行器 </li>



<li class="has-medium-font-size">食指执行器 </li>



<li class="has-medium-font-size"> 中指执行器</li>



<li class="has-medium-font-size">  环指执行器 </li>



<li class="has-medium-font-size"> 小指执行器</li>
</ol>



<h2 class="wp-block-heading">硬件与软件要求</h2>



<ul class="wp-block-list has-medium-font-size">
<li><strong>MCU：</strong>建议使用Seeed Studio XIAO ESP32-S3（推荐8 MB闪存）</li>



<li><strong>伺服电机：</strong>Feetech HLS/SC系列（例如HLS3606M），7个执行器映射ID</li>



<li><strong>电源：</strong>伺服电机轨6–9 V，需具备足够电流容量；MCU通过USB-C接口提供5 V电源。我们建议为可提供高达10A电流的手部驱动使用稳定的6V电源供应。</li>



<li><strong>工具：</strong>Arduino IDE或PlatformIO</li>
</ul>



<h2 class="wp-block-heading">快速入门</h2>



<ol class="wp-block-list">
<li class="has-medium-font-size">在 HandConfig.h 中<strong>选择手</strong>（左/右），或通过构建标志（见下文）进行选择。</li>



<li class="has-medium-font-size"> <strong>构建与烧录：</strong></li>
</ol>



<ul class="wp-block-list">
<li class="has-medium-font-size">◦ PlatformIO：选择 seeed_xiao_esp32s3 ➜ 上传</li>



<li class="has-medium-font-size">◦ Arduino IDE：打开主草图 ➜ 将板设置为 XIAO ESP32S3 ➜ 上传</li>
</ul>



<p class="has-medium-font-size">3. <strong>首次启动：</strong>在配置的波特率（通常为 921600 或 1 000 000）下打开串行监视器。验证板是否被枚举，若已连接电源，检查舵机是否正常响应。</p>



<h2 class="wp-block-heading">仓库布局</h2>



<pre class="wp-block-code alignwide"><code>/firmware
  ├─ firmware.ino         # Main sketch: init, parser, handlers, tasks
  ├─ HandConfig.h                # LEFT_HAND / RIGHT_HAND selection
  ├─ Homing.h                    # Homing API + ServoData type
  ├─ Homing.cpp                  # Homing implementation + baselines
  └─ libraries/                  # Third‑party libraries as needed</code></pre>



<h2 class="wp-block-heading">构建配置：左手 vs 右手</h2>



<p class="has-medium-font-size">你可以通过编辑 HandConfig.h 文件或使用构建标志来切换手部。</p>



<ul class="wp-block-list has-medium-font-size">
<li><strong>PlatformIO</strong> (platformio.ini):</li>
</ul>



<pre class="wp-block-code alignwide"><code>&#91;env:seeed_xiao_esp32s3]
platform = espressif32
board = seeed_xiao_esp32s3
framework = arduino
build_flags = -DRIGHT_HAND       ; or -DLEFT_HAND</code></pre>



<ul class="wp-block-list has-medium-font-size">
<li><strong>Arduino IDE：</strong>暂时取消 HandConfig.h 中宏的注释。</li>
</ul>



<p>提示：保持默认提交（通常是右手），在构建相反手时通过CI或本地标志进行覆盖。注意：您也可以使用aero-hand-gui直接将bin文件上传到ESP32S3，而无需使用任何此类软件。</p>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.gtrob.com/archives/2586/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2586</post-id>	</item>
		<item>
		<title>Aero Hand GUI（图形用户界面）</title>
		<link>https://www.gtrob.com/archives/2568</link>
					<comments>https://www.gtrob.com/archives/2568#respond</comments>
		
		<dc:creator><![CDATA[高天]]></dc:creator>
		<pubDate>Thu, 19 Mar 2026 14:13:18 +0000</pubDate>
				<category><![CDATA[Aero Hand]]></category>
		<category><![CDATA[灵巧手]]></category>
		<guid isPermaLink="false">https://www.gtrob.com/?p=2568</guid>

					<description><![CDATA[安装并启动图形用户界面GUI 遵循软件安 ...]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading has-medium-font-size">安装并启动图形用户界面GUI</h2>



<p class="has-medium-font-size">遵循<a href="https://www.gtrob.com/archives/2561">软件安装</a>中的说明</p>



<h3 class="wp-block-heading">顶部栏控制</h3>



<ul class="wp-block-list">
<li class="has-medium-font-size"><strong>Port</strong> 端口：可用串行端口下拉菜单。若插拔设备，可使用“刷新”重新扫描。</li>



<li class="has-medium-font-size"><strong>Baud</strong> 波特率：串行通信速度。默认值921600适用于高速流传输，我们的固件也使用相同的波特率。</li>



<li class="has-medium-font-size"><strong>Connect / Disconnect </strong>连接/断开：打开或关闭所选串行端口。</li>



<li class="has-medium-font-size"><strong>Rate </strong>速率（Hz）：移动滑块时GUI流式传输CTRL_POS帧的频率。建议：50 Hz，以实现平滑运动且不占用USB带宽。</li>
</ul>



<h3 class="wp-block-heading">操作按钮（从左到右）</h3>



<ul class="wp-block-list">
<li class="has-medium-font-size"><strong>Homing</strong> 归位（<strong><em>安装前调试舵机用，舵机安装到手后避免用！</em></strong>）：发送0x01指令以执行板载归位程序。归位过程中忽略任何其他输入；在3分钟的超时时间内等待确认信号。</li>



<li class="has-medium-font-size"><strong>Set ID</strong> 设置ID：引导流程用于设置伺服的总线ID。需要连接单个伺服；固件在写入前会验证这一点。</li>



<li class="has-medium-font-size"><strong>Trim Servo</strong> 微调伺服：按通道精细调整对齐。输入通道（0-6）和角度偏移量（±）。固件会调整并持久化通道的extend_count到NVS，使其在重启后仍保留。建议使用小步长（±5-10°）并进行测试。</li>



<li class="has-medium-font-size"><strong>Upload Firmware</strong>上传固件：直接从GUI闪存.bin文件。选择后，开发板重置进入引导加载程序，写入镜像并重启设备。</li>



<li class="has-medium-font-size"><strong>Set to Extend</strong>设为展开：发送单个CTRL_POS帧，将所有通道设置为0.000（完全打开/展开姿态）。作为“紧急打开”功能非常实用。</li>



<li class="has-medium-font-size"><strong>GET_POS：</strong>请求位置信息。值以归一化形式0.000→1.000显示，通过每个通道的展开&#x2194;抓取校准（主机0..65535）计算得出。</li>



<li class="has-medium-font-size"><strong>GET_VEL：</strong>请求执行器运动的速度。</li>



<li class="has-medium-font-size"><strong>GET_CURR：</strong>请求电流（mA），带符号——符号反映电机方向相对于通道伺服方向（使用绝对值评估负载）。</li>



<li class="has-medium-font-size"><strong>GET_TEMP：</strong>从每个伺服请求温度（°C）。</li>



<li class="has-medium-font-size"><strong>GET_ALL：</strong>便捷批量读取，触发POS + VEL + CURR + TEMP的一次性读取并将结果打印到日志。</li>



<li class="has-medium-font-size"><strong>Set Speed</strong>设置速度：为选定的伺服ID设置速度限制（指令码0x31）。这会设置该伺服的最大速度；默认情况下，速度为最大值，重启后重置。此处设置的速度会影响位置控制模式下电机移动的最大速度，这与速度控制模式不同。</li>



<li class="has-medium-font-size"><strong>Set Torque</strong>设置扭矩：为选定的伺服ID设置最大扭矩限制（指令码0x32）。这会限制最大扭矩；默认情况下，扭矩为最大值，重启后重置。此处设置的扭矩会影响位置控制模式下电机可施加的最大扭矩，这与扭矩控制模式不同。</li>
</ul>



<h3 class="wp-block-heading">滑块面板（中心）</h3>



<p class="has-medium-font-size">每一行通过一个归一化滑块控制一个单独的执行器通道：</p>



<ul class="wp-block-list">
<li class="has-medium-font-size"><strong>0.000至1.000</strong> 通过2字节线性映射到通道的<strong>校准范围&#x2194;抓取范围</strong>，并作为14字节有效载荷通过CTRL_POS命令发送。</li>



<li class="has-medium-font-size">拖动时，GUI以所选<strong>速率</strong>（Hz）流式传输<strong>CTRL_POS</strong>帧。</li>



<li class="has-medium-font-size">两个小数值读数显示当前命令和（轮询时）最新的归一化反馈。</li>
</ul>



<p class="has-medium-font-size"><strong>频道映射（从上到下）:</strong> thumb_abduction_actuator拇指外展执行器, thumb_flex_actuator拇指屈曲执行器, thumb_tendon_actuator拇指肌腱执行器, index_finger_actuator食指执行器, middle_finger_actuator中指执行器, ring_finger_actuator无名指执行器, pinky_finger_actuator小指执行器.</p>



<h3 class="wp-block-heading">状态与日志（底部）</h3>



<ul class="wp-block-list">
<li class="has-medium-font-size"><strong>Status bar</strong>状态栏（左侧）：显示连接状态（例如：已断开连接、COM12 @ 921600）、最后错误以及归位/闪烁进度消息。</li>



<li class="has-medium-font-size"> <strong>RX Log</strong>接收日志：响应/遥测数据的文本控制台，可用于调试、验证操作码和查看GET_*结果。</li>



<li class="has-medium-font-size"><strong>Clear Log</strong>清除日志：清除接收日志显示（不影响设备状态）。</li>
</ul>



<h2 class="wp-block-heading">上传固件</h2>



<p class="has-medium-font-size">要将固件上传到您的Aero Hand设备：</p>



<ol class="wp-block-list">
<li class="has-medium-font-size">在图形用户界面中<strong>Refresh刷新</strong>所有端口以检测已连接的设备。</li>



<li class="has-medium-font-size">如果列出了多个端口，请识别您的ESP设备对应的端口：</li>
</ol>



<ul class="wp-block-list">
<li class="has-medium-font-size">在 <strong>Windows</strong> 系统中，它通常是一个 <strong>COM</strong> 端口（例如 COM3、COM12）。</li>



<li class="has-medium-font-size">在<strong> Linux</strong> 系统中，请查找 /dev/ttyACM0、/dev/ttyACM1 等。</li>
</ul>



<p class="has-medium-font-size">3.选择正确的端口并点击 <strong>Upload Firmware</strong> 上传固件按钮。</p>



<p class="has-medium-font-size">4.将打开一个对话框——导航到并选择适当的固件 .bin 文件（firmware_righthand.bin 或 firmware_lefthand.bin）。</p>



<p class="has-medium-font-size">5.该工具将把 .bin 文件上传到设备的偏移地址 0x10000 处。</p>



<p class="has-medium-font-size">6.上传成功后，你将在图形用户界面中看到确认消息。</p>



<figure class="wp-block-image size-full"><img fetchpriority="high" decoding="async" width="937" height="288" src="https://www.gtrob.com/wp-content/uploads/2026/03/uploadfirmware.png" alt="" class="wp-image-2574" srcset="https://www.gtrob.com/wp-content/uploads/2026/03/uploadfirmware.png 937w, https://www.gtrob.com/wp-content/uploads/2026/03/uploadfirmware-300x92.png 300w, https://www.gtrob.com/wp-content/uploads/2026/03/uploadfirmware-768x236.png 768w" sizes="(max-width: 937px) 100vw, 937px" /></figure>



<h4 class="wp-block-heading">注意事项与故障排除</h4>



<ol class="wp-block-list">
<li>如果遇到错误，请首先确认已选择正确的COM端口。</li>



<li>该工具使用esptool版本5或更高版本。旧版本可能无法正常工作，因为它们使用write_flash而非write-flash。</li>



<li> 烧录完成后，工具将尝试自动重新连接到ESP（最多3次尝试）。通常情况下，第一次尝试即可连接。如果未连接，请刷新端口并重试。</li>



<li>固件上传至偏移地址0x10000。请勿使用合并的或分区.bin文件，因为这些可能导致错误。仅使用aero-open-firmware仓库中提供的.bin文件。</li>
</ol>



<h3 class="wp-block-heading">设置伺服器ID</h3>



<ol class="wp-block-list">
<li class="has-medium-font-size">使用<strong>6V电源</strong>为电路板供电并连接USB。</li>



<li class="has-medium-font-size"> 将<strong>一个伺服电机</strong>精确连接到总线上。</li>



<li class="has-medium-font-size"> 在图形用户界面中，选择正确的<strong>COM端口</strong>，然后点击<strong>连接Connect</strong>。</li>



<li class="has-medium-font-size">点击“<strong>Set ID</strong>设置ID”，为你要接线的通道分配伺服电机。
<ul class="wp-block-list">
<li>0 → thumb_abduction_actuator</li>



<li>1 → thumb_flex_actuator</li>



<li>2 → thumb_tendon_actuator</li>



<li>3 → index_finger_actuator</li>



<li>4 → middle_finger_actuator</li>



<li>5 → ring_finger_actuator</li>



<li>6 → pinky_finger_actuator</li>
</ul>
</li>



<li class="has-medium-font-size">如果ID设置成功，您将在下方的RX栏中收到确认信号（ACK）。</li>



<li class="has-medium-font-size"> 如果在oldid、new id和current中收到65535作为确认信号（ACK），则表示ID未成功设置。</li>



<li class="has-medium-font-size">设置ID后，您可以移动相应的滑块，以确认执行器是否在移动。</li>



<li class="has-medium-font-size"> 断开当前舵机，插入下一个舵机，并重复此过程，直到所有七个舵机都被分配。</li>
</ol>



<h4 class="wp-block-heading">注意事项与故障排除</h4>



<ol class="wp-block-list">
<li>设置ID前，请确保控制板已通电且仅连接一个舵机。</li>



<li> 建议按顺序为所有舵机设置ID（0–6）。除0–6以外的任何值均不被接受。</li>



<li> 关于电流限制，建议保持在最大值（1023）并点击确认——除非必要，否则不要更改此值。</li>



<li> 设置ID后，系统将显示舵机的旧ID、新ID和电流限制作为确认信息。</li>



<li> 如果旧ID、新ID和电流限制均显示为65535，这表明存在两个或更多舵机，设置ID模式将无法继续。</li>



<li>所有舵机ID设置完成后，建议在使用手部进行操作和训练时不再使用此功能。</li>
</ol>



<h2 class="wp-block-heading">Trim Servo微调伺服</h2>



<p class="has-medium-font-size">使用Trim Servo时：首先，系统会提示您输入舵机通道（0–6），该通道对应顺序为：拇指外展、拇指屈曲、拇指肌腱以及四指。接下来，输入角度偏移量。建议以10–20度为步长进行调整，然后通过滑块观察效果。如果出现异常情况，可能需要重新执行归零程序，以将伸展计数重置为基准值。</p>



<h5 class="wp-block-heading">左手执行器表</h5>



<figure class="wp-block-image size-full"><img decoding="async" width="870" height="501" src="https://www.gtrob.com/wp-content/uploads/2026/03/Left-Hand-Actuator-Table.png" alt="" class="wp-image-2579" srcset="https://www.gtrob.com/wp-content/uploads/2026/03/Left-Hand-Actuator-Table.png 870w, https://www.gtrob.com/wp-content/uploads/2026/03/Left-Hand-Actuator-Table-300x173.png 300w, https://www.gtrob.com/wp-content/uploads/2026/03/Left-Hand-Actuator-Table-768x442.png 768w" sizes="(max-width: 870px) 100vw, 870px" /></figure>



<h5 class="wp-block-heading">右手手执行器表</h5>



<figure class="wp-block-image size-full"><img decoding="async" width="870" height="499" src="https://www.gtrob.com/wp-content/uploads/2026/03/Right-Hand-Actuator-Table.png" alt="" class="wp-image-2580" srcset="https://www.gtrob.com/wp-content/uploads/2026/03/Right-Hand-Actuator-Table.png 870w, https://www.gtrob.com/wp-content/uploads/2026/03/Right-Hand-Actuator-Table-300x172.png 300w, https://www.gtrob.com/wp-content/uploads/2026/03/Right-Hand-Actuator-Table-768x440.png 768w" sizes="(max-width: 870px) 100vw, 870px" /></figure>



<p class="has-medium-font-size"><em><strong>运动（度）的计算公式为（握持数 &#8211; 伸展数）除以 11.375</strong></em></p>



<p class="has-medium-font-size">这意味着伺服现在将通过2867个计数移动，而不是原来的2980个计数。原来的2980个计数代表262度的运动范围，而现在它仅能实现252度的总运动，这将减小伺服的全运动范围并使其更紧凑。如果反向操作，伺服的运动范围会增加，可能导致线缆松动并引发问题。由于无法修改伺服的抓取计数，建议在进行任何更改前参考此表格。</p>



<h4 class="wp-block-heading">注意事项与故障排除</h4>



<ol class="wp-block-list">
<li class="has-medium-font-size">不要输入360度或-360度等数值，这可能会完全改变控制方向，请避免这样做。</li>



<li class="has-medium-font-size"> 如果舵机过紧，可尝试通过输入与上次调整相反方向的度数来松开它。</li>



<li class="has-medium-font-size"> 仅在需要对舵机运动范围进行精细控制时使用此功能。</li>



<li class="has-medium-font-size"> 如果任何执行器移动到突变位置并产生堵转电流（通常为1.3–1.5A），请立即断开电源。</li>
</ol>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.gtrob.com/archives/2568/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2568</post-id>	</item>
		<item>
		<title>Aero Hand 软件安装</title>
		<link>https://www.gtrob.com/archives/2561</link>
					<comments>https://www.gtrob.com/archives/2561#respond</comments>
		
		<dc:creator><![CDATA[高天]]></dc:creator>
		<pubDate>Thu, 19 Mar 2026 13:21:16 +0000</pubDate>
				<category><![CDATA[Aero Hand]]></category>
		<category><![CDATA[Aero Hand Open]]></category>
		<guid isPermaLink="false">https://www.gtrob.com/?p=2561</guid>

					<description><![CDATA[步骤 1：安装 该 SDK 目前已针对  ...]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading">步骤 1：安装</h2>



<p class="has-medium-font-size">该 SDK 目前已针对 Python 3.10 及以上版本进行测试。</p>



<h4 class="wp-block-heading">建议通过 pip 安装</h4>



<p class="has-medium-font-size"><strong>对于 Mac 和 Linux：</strong></p>



<pre class="wp-block-code alignwide"><code>pip install aero-open-sdk</code></pre>



<p class="has-medium-font-size"><strong>对于 Windows（使用 PowerShell）：</strong></p>



<pre class="wp-block-code alignwide"><code>python -m pip install --upgrade pip
python -m pip install aero-open-sdk</code></pre>



<h4 class="wp-block-heading">选项 2：从源代码安装（获取最新更新）</h4>



<p class="has-medium-font-size">1.将代码库克隆到本地计算机</p>



<pre class="wp-block-code alignwide"><code>git clone https://github.com/TetherIA/aero-hand-open.git</code></pre>



<p class="has-medium-font-size">2.导航到 SDK 目录：</p>



<pre class="wp-block-code alignwide"><code>cd aero-hand-open/sdk</code></pre>



<p class="has-medium-font-size">3.以可编辑模式安装该软件包：</p>



<pre class="wp-block-code alignwide"><code>pip install -e .</code></pre>



<h2 class="wp-block-heading">步骤 2：图形用户界面GUI — Aero Hand Open控制程序</h2>



<p class="has-medium-font-size">安装后从终端启动图形用户界面：</p>



<p class="has-medium-font-size"><strong>对于 Mac 和 Linux：</strong></p>



<pre class="wp-block-code alignwide"><code>aero-open-gui</code></pre>



<p class="has-medium-font-size"><strong>对 Windows 系统：</strong></p>



<pre class="wp-block-code alignwide"><code>python -m aero_open_sdk</code></pre>



<p>注意：如果系统找不到该命令，请确保Python环境的脚本目录已添加到PATH中，并且包已安装到活动环境中。如需更多故障排除信息，请参阅文档末尾的“故障排除”部分。</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="601" src="https://www.gtrob.com/wp-content/uploads/2026/03/gui-aero-hand-1024x601.png" alt="" class="wp-image-2564" srcset="https://www.gtrob.com/wp-content/uploads/2026/03/gui-aero-hand-1024x601.png 1024w, https://www.gtrob.com/wp-content/uploads/2026/03/gui-aero-hand-300x176.png 300w, https://www.gtrob.com/wp-content/uploads/2026/03/gui-aero-hand-768x451.png 768w, https://www.gtrob.com/wp-content/uploads/2026/03/gui-aero-hand-1536x902.png 1536w, https://www.gtrob.com/wp-content/uploads/2026/03/gui-aero-hand.png 1918w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<h4 class="wp-block-heading">Find port查找端口号：</h4>



<p class="has-medium-font-size">点击“刷新”按钮（靠近端口选择处），下拉菜单将弹出。如果Windows电脑上未连接多个串行设备，刷新后会自动选择正确的COM端口。这在仅用一只手操作时很方便。如果双手都使用，拔掉所有设备，再逐一插回以确定每个手（左手或右手）</p>



<p class="has-medium-font-size">对应的COM端口。在Linux系统中，刷新后会找到类似/dev/ttyACM0、/dev/ttyACM1或/dev/ttyUSB*的设备路径，然后使用正确的端口连接手部设备。</p>



<h4 class="wp-block-heading">Homing（归位,<em>安装前调试舵机用，舵机安装到手后避免用！</em>）</h4>



<p class="has-medium-font-size">连接手部后，你将在图形用户界面（GUI）中看到一个“Homing”按钮。按下此按钮开始归位。请确保手部处于安全位置，且前方没有障碍物。如果运动不符合预期，我们建议执行归位操作。归位过程中，手部不会响应其他命令，且需要一些时间完成整个过程。完成后，图形用户界面（GUI）将显示确认信息（ACK），表明归位已完成。</p>



<h4 class="wp-block-heading">滑动滑块以控制位置</h4>



<p class="has-medium-font-size">在图形用户界面中，您可以使用滑块控制每个手指或执行器的位置。每个滑块代表一个通道（手指或拇指关节），允许您将其位置设置为从0（完全打开/伸展）到1（完全闭合/抓握）。</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="601" src="https://www.gtrob.com/wp-content/uploads/2026/03/gui-aero-hand2-1024x601.png" alt="" class="wp-image-2565" srcset="https://www.gtrob.com/wp-content/uploads/2026/03/gui-aero-hand2-1024x601.png 1024w, https://www.gtrob.com/wp-content/uploads/2026/03/gui-aero-hand2-300x176.png 300w, https://www.gtrob.com/wp-content/uploads/2026/03/gui-aero-hand2-768x451.png 768w, https://www.gtrob.com/wp-content/uploads/2026/03/gui-aero-hand2-1536x902.png 1536w, https://www.gtrob.com/wp-content/uploads/2026/03/gui-aero-hand2.png 1918w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="has-medium-font-size">只需点击并拖动滑块至所需值，手部会实时移动到该位置。这有助于测试单个手指的运动，也可手动将手部定位到您选择的某种姿势。</p>



<h2 class="wp-block-heading">步骤 3：Python 控制与示例</h2>



<p class="has-medium-font-size">Aero Hand 通过 USB-C 线缆连接到主机 PC。要在 Windows 电脑上操作 SDK，必须为您的设备指定正确的串口。</p>



<h4 class="wp-block-heading">Find port查找端口号：</h4>



<h5 class="wp-block-heading">Linux</h5>



<p class="has-medium-font-size">如果你只用一只手进行操作和工作，可以直接初始化手部。</p>



<pre class="wp-block-code alignwide"><code>from aero_open_sdk.aero_hand import AeroHand

aero_hand = AeroHand()</code></pre>



<h5 class="wp-block-heading">Windows</h5>



<p class="has-medium-font-size">在 Windows 系统中，连接到 USB 端口的设备会显示为 COM 端口，例如 COM12 或 COM3。您可以通过在“设备管理器”中的“端口 (COM &amp; LPT)”下检查来找到正确的端口。该设备将被列为类似“USB 串行设备 (COM12)”的条目。</p>



<p class="has-medium-font-size">然后您可以使用检测到的COM端口初始化您的灵巧手：</p>



<pre class="wp-block-code alignwide"><code>from aero_open_sdk.aero_hand import AeroHand
aero_hand = AeroHand(port="COM3")</code></pre>



<p class="has-medium-font-size">一旦你从上述步骤中知道了设备的端口，你就可以运行sdk/examples文件夹中的任何示例文件来测试或控制你的Aero Hand Open。</p>



<h3 class="wp-block-heading">运行示例</h3>



<h3 class="wp-block-heading has-medium-font-size">run_sequence</h3>



<p class="has-medium-font-size">如果归位操作正确完成且手部处于安全位置，运行 run_sequence.py 示例将使您的手依次通过一系列姿势：掌心张开、逐一捏起每个手指、掌心张开、比出和平手势、掌心张开、比出摇滚手势，然后回到掌心张开。</p>



<p class="has-medium-font-size">你也可以创建任何自定义轨迹并使用 hand.run_trajectory 来执行它。</p>



<h3 class="wp-block-heading">power_grasp</h3>



<p class="has-medium-font-size">运行 power_grasp.py 示例时，你可以使用键盘上的空格键在手的张开和闭合姿态之间切换。这允许你快速切换手的状态，以便进行测试或演示。</p>



<p class="has-medium-font-size">你也可以将 open_pose 和 grip_pose 更改为任何你想要的目标姿态，然后调用 hand.set_joint_positions。请确保检查 SDK 中的关节常量，因为每个关节的输入值必须在支持范围内，否则输入值将被截断到上下限范围。</p>



<h3 class="wp-block-heading">探索更多示例</h3>



<p class="has-medium-font-size">更多示例可在 sdk 文件夹中找到</p>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.gtrob.com/archives/2561/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2561</post-id>	</item>
		<item>
		<title>Aero Hand组装说明</title>
		<link>https://www.gtrob.com/archives/2558</link>
					<comments>https://www.gtrob.com/archives/2558#respond</comments>
		
		<dc:creator><![CDATA[高天]]></dc:creator>
		<pubDate>Thu, 19 Mar 2026 13:01:36 +0000</pubDate>
				<category><![CDATA[Aero Hand]]></category>
		<category><![CDATA[机器人项目]]></category>
		<category><![CDATA[灵巧手]]></category>
		<guid isPermaLink="false">https://www.gtrob.com/?p=2558</guid>

					<description><![CDATA[此页面包含Aero Hand的完整组装说 ...]]></description>
										<content:encoded><![CDATA[
<p class="has-medium-font-size">此页面包含Aero Hand的完整组装说明中文版。</p>



<h2 class="wp-block-heading">查看说明</h2>



<p class="has-medium-font-size">您可以查看下方的组装说明PDF，或直接下载。</p>



<div data-wp-interactive="core/file" class="wp-block-file"><object data-wp-bind--hidden="!state.hasPdfPreview" hidden class="wp-block-file__embed" data="https://www.gtrob.com/wp-content/uploads/2026/03/Assembly_Instructions-Aero-Hand组装教程中文版.pdf" type="application/pdf" style="width:100%;height:600px" aria-label="嵌入 Assembly_Instructions-Aero Hand组装教程中文版"></object><a id="wp-block-file--media-6a5b952a-bd7d-4297-b053-cee327d60a21" href="https://www.gtrob.com/wp-content/uploads/2026/03/Assembly_Instructions-Aero-Hand组装教程中文版.pdf">Assembly_Instructions-Aero Hand组装教程中文版</a><a href="https://www.gtrob.com/wp-content/uploads/2026/03/Assembly_Instructions-Aero-Hand组装教程中文版.pdf" class="wp-block-file__button wp-element-button" download aria-describedby="wp-block-file--media-6a5b952a-bd7d-4297-b053-cee327d60a21">下载</a></div>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.gtrob.com/archives/2558/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2558</post-id>	</item>
		<item>
		<title>Aero Hand Open:低成本、开源、轻便、仿生灵巧手</title>
		<link>https://www.gtrob.com/archives/2447</link>
					<comments>https://www.gtrob.com/archives/2447#comments</comments>
		
		<dc:creator><![CDATA[高天]]></dc:creator>
		<pubDate>Wed, 07 Jan 2026 10:45:57 +0000</pubDate>
				<category><![CDATA[Aero Hand]]></category>
		<category><![CDATA[人形机器人]]></category>
		<category><![CDATA[机器人项目]]></category>
		<guid isPermaLink="false">https://www.gtrob.com/?p=2447</guid>

					<description><![CDATA[Aero Hand Open 是一款低成 ...]]></description>
										<content:encoded><![CDATA[
<p>Aero Hand Open 是一款低成本、开源、轻便(<strong>约 400 克</strong>)、拟人化的机器人手部,由 TetherIA 设计并开发 价格实惠的灵巧操作研究。<strong>只需314美元</strong>,它为昂贵的专有产品提供了一种可行的替代方案 通过创新的肌腱运动保持高性能。</p>



<p><strong>官方开源地址：</strong><a href="https://github.com/TetherIA/aero-hand-open">https://github.com/TetherIA/aero-hand-open</a></p>



<h5 class="wp-block-heading"><strong>套件链接</strong>：</h5>



<ul class="wp-block-list">
<li><a href="https://www.gtrob.com/products/aero-hand-%e5%8d%95%e6%89%8b3d%e6%89%93%e5%8d%b0%e4%bb%b6" data-type="page" data-id="2385">Aero Hand 单手3D打印件套件</a></li>



<li><a href="https://www.gtrob.com/products/aero-hand-%e5%8d%95%e6%89%8b%e8%88%b5%e6%9c%ba%ef%bc%887%e4%bb%b6%ef%bc%89%e5%a5%97%e4%bb%b6">Aero Hand 单手舵机（7件）套件</a></li>
</ul>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="576" src="https://www.gtrob.com/wp-content/uploads/2026/01/banner-1024x576.jpg" alt="" class="wp-image-2448" srcset="https://www.gtrob.com/wp-content/uploads/2026/01/banner-1024x576.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2026/01/banner-300x169.jpg 300w, https://www.gtrob.com/wp-content/uploads/2026/01/banner-768x432.jpg 768w, https://www.gtrob.com/wp-content/uploads/2026/01/banner-1536x864.jpg 1536w, https://www.gtrob.com/wp-content/uploads/2026/01/banner-2048x1152.jpg 2048w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p><strong>Aero Hand Open</strong> 是一款由肌腱驱动的、欠驱动的灵巧机器人手,用于操作、强化学习和特定人工智能的研究。<br>它专为硬件、固件和软件层之间的可重复性、透明性和易于集成而设计。</p>



<p><strong>手采用肌腱驱动的驱动型结构</strong>,即每个电机通过电缆布线驱动多个接头。<br>这种方法通过更少的执行器实现高灵越,从而实现轻量化且合规的设计。</p>



<p><strong>关键特征:</strong></p>



<ul class="wp-block-list">
<li>16度自由度(7个主动式,9个被动式)</li>



<li>拇指的3个主动式DOF,实现真正的灵巧</li>



<li>每指一马达肌腱肌衰</li>



<li>DIP 与 PIP 接头之间的被动 1:1 耦合</li>



<li>MCP接头处的自适应联轴器,以符合接触行为要求</li>



<li>紧凑型伺服执行器模块,集成编码器</li>



<li>模块化3D打印机械部件</li>



<li>6 个直流电源输入和 USB 通信</li>



<li>完全开源的CAD和PCB设计</li>
</ul>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="1024" height="917" src="https://www.gtrob.com/wp-content/uploads/2026/01/Aero_Hand01.jpg" alt="" class="wp-image-2449" srcset="https://www.gtrob.com/wp-content/uploads/2026/01/Aero_Hand01.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2026/01/Aero_Hand01-300x269.jpg 300w, https://www.gtrob.com/wp-content/uploads/2026/01/Aero_Hand01-768x688.jpg 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="768" height="1024" src="https://www.gtrob.com/wp-content/uploads/2026/01/Aero_Hand002-768x1024.jpg" alt="" class="wp-image-2450" srcset="https://www.gtrob.com/wp-content/uploads/2026/01/Aero_Hand002-768x1024.jpg 768w, https://www.gtrob.com/wp-content/uploads/2026/01/Aero_Hand002-225x300.jpg 225w, https://www.gtrob.com/wp-content/uploads/2026/01/Aero_Hand002.jpg 1024w" sizes="auto, (max-width: 768px) 100vw, 768px" /></figure>
</div>

<div class="sdm_download_item "><div class="sdm_download_item_top"><div class="sdm_download_thumbnail"><img decoding="async" class="sdm_download_thumbnail_image" src="https://www.gtrob.com/wp-content/uploads/2026/01/Aero_Hand01.jpg" alt = "Aero Hand 打印文件" /></div><div class="sdm_download_title">Aero Hand 打印文件</div></div><div style="clear:both;"></div><div class="sdm_download_description"><p>Aero Hand 拓竹BambuStudio打印文件</p>
</div><div class="sdm_download_link"><span class="sdm_download_button"><a href="https://www.gtrob.com/?sdm_process_download=1&download_id=2459" class="sdm_download orange" title="Aero Hand 打印文件" target="_self">立即下载！</a></span></div></div><div class="sdm_clear_float"></div>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.gtrob.com/archives/2447/feed</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2447</post-id>	</item>
	</channel>
</rss>
