<?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>教程 &#8211; GTROB</title>
	<atom:link href="https://www.gtrob.com/archives/category/maker-school/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>教程 &#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>低成本8自由度4指灵巧手-AmazingHand</title>
		<link>https://www.gtrob.com/archives/2519</link>
					<comments>https://www.gtrob.com/archives/2519#respond</comments>
		
		<dc:creator><![CDATA[高天]]></dc:creator>
		<pubDate>Sat, 31 Jan 2026 13:42:37 +0000</pubDate>
				<category><![CDATA[AmazingHand]]></category>
		<category><![CDATA[人形机器人]]></category>
		<category><![CDATA[机器人项目]]></category>
		<category><![CDATA[灵巧手]]></category>
		<category><![CDATA[开源灵巧手]]></category>
		<guid isPermaLink="false">https://www.gtrob.com/?p=2519</guid>

					<description><![CDATA[AmazingHand 是一个开源的 3 ...]]></description>
										<content:encoded><![CDATA[
<p>AmazingHand 是一个开源的 3D 打印仿人机械手项目，旨在为机器人研究、教育和开发提供一种低成本、轻量化的解决方案。该项目打破了传统高性能机械手价格昂贵、结构笨重的壁垒，其核心设计全部可 3D 打印，且无需依赖外部前臂驱动器。</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="1139" height="487" src="https://www.gtrob.com/wp-content/uploads/2026/01/Patterns_Overview.jpg" alt="" class="wp-image-2520" srcset="https://www.gtrob.com/wp-content/uploads/2026/01/Patterns_Overview.jpg 1139w, https://www.gtrob.com/wp-content/uploads/2026/01/Patterns_Overview-300x128.jpg 300w, https://www.gtrob.com/wp-content/uploads/2026/01/Patterns_Overview-1024x438.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2026/01/Patterns_Overview-768x328.jpg 768w" sizes="auto, (max-width: 1139px) 100vw, 1139px" /></figure>



<p><strong>关键特性与规格</strong></p>



<p>自由度与结构‌：拥有 8 个自由度（8-DOF），配备四根手指，每根手指由两个并联的舵机驱动，可独立实现‌屈伸‌（弯曲）和‌内收/外展‌（左右移动）两种运动。‌<br>‌驱动与设计‌：所有执行器（8 个 Feetech SCS0009 舵机）均集成在手掌内部，通过差动电机运动实现手指控制，无需线缆，结构紧凑。‌<br>‌材料与重量‌：骨骼结构采用刚性 3D 打印材料，表面覆盖柔性 TPU 外壳，既保证了强度，又提升了抓握的安全性和顺应性。整只手重量约为 ‌400 克‌。‌<br>‌成本与开源‌：材料成本低于 200 欧元，项目完全开源，机械设计采用 CC BY 4.0 许可证，代码采用 Apache 2.0 许可证。‌<br>‌兼容性‌：腕部接口专为 Reachy2 机器人设计，但可轻松适配其他机械臂平台。‌</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="503" src="https://www.gtrob.com/wp-content/uploads/2026/01/Hand_Overview-1024x503.jpg" alt="" class="wp-image-2517" srcset="https://www.gtrob.com/wp-content/uploads/2026/01/Hand_Overview-1024x503.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2026/01/Hand_Overview-300x147.jpg 300w, https://www.gtrob.com/wp-content/uploads/2026/01/Hand_Overview-768x377.jpg 768w, https://www.gtrob.com/wp-content/uploads/2026/01/Hand_Overview.jpg 1088w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p>设计灵感来自ILDA手，采用双舵机驱动每根手指，实现屈伸与外展内收。骨骼结构坚固，表面覆盖柔软TPU壳，既保证力量又保护握持物。大拇指可与食指对拢，掌部柔性设计提升抓握适应性。</p>



<p>目前，“Amazing Hand”可直接装配到7自由度的Reachy2机器人上，CAD文件开源，支持自由定制和适配其他机械臂。基于简单摄像头的手部追踪系统已实现，可用逆运动学与QP算法精准控制手指动作。</p>



<p>项目完全开源，包含BOM清单、3D打印文件、组装指南和示例程序，地址：github.com/pollen-robotics/AmazingHand。欢迎开发者自由改造：增添第五指、调整手指比例、替换腕部接口、植入传感器……让这只机械手更强大，更个性化。</p>



<p>这是一次低成本、高性能机械手的突破，推动类人机器人走向普及与创新。期待更多创意碰撞，助力机器人更灵巧、更智能！</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="313" height="224" src="https://www.gtrob.com/wp-content/uploads/2026/01/Heart.jpg" alt="" class="wp-image-2521" srcset="https://www.gtrob.com/wp-content/uploads/2026/01/Heart.jpg 313w, https://www.gtrob.com/wp-content/uploads/2026/01/Heart-300x215.jpg 300w" sizes="auto, (max-width: 313px) 100vw, 313px" /></figure>


<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/AmazingHand_Couv.jpg" alt = "AmazingHand" /></div><div class="sdm_download_title">AmazingHand</div></div><div style="clear:both;"></div><div class="sdm_download_description"><p class="marklang-paragraph">AmazingHand 是一个开源的 3D 打印仿人机械手项目，旨在为机器人研究、教育和开发提供一种低成本、轻量化的解决方案。该项目打破了传统高性能机械手价格昂贵、结构笨重的壁垒，其核心设计全部可 3D 打印，且无需依赖外部前臂驱动器。‌</p>
</div><div class="sdm_download_link"><span class="sdm_download_button"><a href="https://www.gtrob.com/?sdm_process_download=1&download_id=2513" class="sdm_download orange" title="AmazingHand" target="_self">立即下载！</a></span></div></div><div class="sdm_clear_float"></div>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.gtrob.com/archives/2519/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2519</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>
		<item>
		<title>ORCA v1 Hand</title>
		<link>https://www.gtrob.com/archives/2372</link>
					<comments>https://www.gtrob.com/archives/2372#comments</comments>
		
		<dc:creator><![CDATA[高天]]></dc:creator>
		<pubDate>Sat, 27 Dec 2025 07:28:57 +0000</pubDate>
				<category><![CDATA[ORCA Hand]]></category>
		<category><![CDATA[人形机器人]]></category>
		<category><![CDATA[机器人项目]]></category>
		<category><![CDATA[机械臂]]></category>
		<guid isPermaLink="false">https://www.gtrob.com/?p=2372</guid>

					<description><![CDATA[ORCA v1 手是一个由肌腱驱动的拟人 ...]]></description>
										<content:encoded><![CDATA[
<p><strong>ORCA v1</strong> 手是一个由肌腱驱动的拟人机器人平台,旨在紧密复制人手的结构和运动。它具有17个自由度——手指16度,手腕1度——具备多种灵巧的操控任务。其设计平衡了功能、可靠性和可访问性。</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="683" src="https://www.gtrob.com/wp-content/uploads/2025/12/10005-1-1024x683.jpg" alt="" class="wp-image-2361" srcset="https://www.gtrob.com/wp-content/uploads/2025/12/10005-1-1024x683.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2025/12/10005-1-300x200.jpg 300w, https://www.gtrob.com/wp-content/uploads/2025/12/10005-1-768x512.jpg 768w, https://www.gtrob.com/wp-content/uploads/2025/12/10005-1-1536x1024.jpg 1536w, https://www.gtrob.com/wp-content/uploads/2025/12/10005-1-2048x1365.jpg 2048w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p><strong>Open-Source:</strong>开源:所有设计文件(STL)、控制软件、材料列表以及分步组装说明(包括视频)dashboard均可在我们的仪表板上公开使用。该项目旨在鼓励研究人员、教育工作者和业余爱好者进行复制、定制和实验。</p>



<p><strong>Reliable:</strong>可靠:ORCA 手部包含多种设计选择,专注于坚固性和寿命。接头经过精心设计,可在过重负荷下安全拆卸,而非断裂,从而保护部件并简化维修。此外,通过每个接头旋转中心进行自动校准、低摩擦肌腱路由,以及模块化布局,有助于实现性能的一致性和长期可用性。</p>



<p><strong>Cost-Effective:</strong>性价比高:这款手以3D打印设计为中心,总材料成本低于2000瑞士法郎。所有结构部件均可使用标准3D打印机进行打印,剩余的现成部件广泛可用,易于在线获取,确保了广大用户的可访问性。</p>



<p><strong>Anthropomorphic:</strong>拟人化:专为与人手的比例和关节布局相匹配而设计,ORCA v1 包含可对立的拇指和动感手腕。它反映了人类的关节结构,包括MCP、PIP和ABD接头,使其能够与最初为人类使用而设计的日常工具和物体进行交互,并以类似人类的敏捷性执行广泛的操作任务。这种拟人化结构还显著简化了远程操作/重新定位,并有助于更直接地训练人手数据。这些功能共同构成了ORCA v1手柄在机器人技术以及以操控为重点的学习与开发中实践探索的实用且多功能的平台。</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1946" height="1946" src="https://www.gtrob.com/wp-content/uploads/2025/12/10006.jpg" alt="" class="wp-image-2348" srcset="https://www.gtrob.com/wp-content/uploads/2025/12/10006.jpg 1946w, https://www.gtrob.com/wp-content/uploads/2025/12/10006-300x300.jpg 300w, https://www.gtrob.com/wp-content/uploads/2025/12/10006-1024x1024.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2025/12/10006-150x150.jpg 150w, https://www.gtrob.com/wp-content/uploads/2025/12/10006-768x768.jpg 768w, https://www.gtrob.com/wp-content/uploads/2025/12/10006-1536x1536.jpg 1536w" sizes="auto, (max-width: 1946px) 100vw, 1946px" /></figure>
</div>

<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="1024" src="https://www.gtrob.com/wp-content/uploads/2025/12/10004-1024x1024.jpg" alt="" class="wp-image-2347" srcset="https://www.gtrob.com/wp-content/uploads/2025/12/10004-1024x1024.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2025/12/10004-300x300.jpg 300w, https://www.gtrob.com/wp-content/uploads/2025/12/10004-150x150.jpg 150w, https://www.gtrob.com/wp-content/uploads/2025/12/10004-768x768.jpg 768w, https://www.gtrob.com/wp-content/uploads/2025/12/10004-1536x1536.jpg 1536w, https://www.gtrob.com/wp-content/uploads/2025/12/10004.jpg 1946w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p><strong>下载</strong></p>


<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/2025/12/10006-2.jpg" alt = "ORCA_Fingers" /></div><div class="sdm_download_title">ORCA_Fingers</div></div><div style="clear:both;"></div><div class="sdm_download_description"><h4 class="entry-title">ORCA v1 Hand 手指部分打印文件</h4>
</div><div class="sdm_download_link"><span class="sdm_download_button"><a href="https://www.gtrob.com/?sdm_process_download=1&download_id=2342" class="sdm_download orange" title="ORCA_Fingers" target="_self">立即下载！</a></span></div></div><div class="sdm_clear_float"></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/2025/12/10008-1.jpg" alt = "ORCA_Tower" /></div><div class="sdm_download_title">ORCA_Tower</div></div><div style="clear:both;"></div><div class="sdm_download_description"><h4 class="entry-title">ORCA v1 Hand 手腕部打印文件</h4>
</div><div class="sdm_download_link"><span class="sdm_download_button"><a href="https://www.gtrob.com/?sdm_process_download=1&download_id=2377" class="sdm_download orange" title="ORCA_Tower" target="_self">立即下载！</a></span></div></div><div class="sdm_clear_float"></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/2025/12/10006-2.jpg" alt = "ORCA_Spools" /></div><div class="sdm_download_title">ORCA_Spools</div></div><div style="clear:both;"></div><div class="sdm_download_description"><p>ORCA_Spools</p>
<h4 class="entry-title">ORCA v1 Hand 舵机绞线舵盘打印文件</h4>
</div><div class="sdm_download_link"><span class="sdm_download_button"><a href="https://www.gtrob.com/?sdm_process_download=1&download_id=2379" class="sdm_download orange" title="ORCA_Spools" target="_self">立即下载！</a></span></div></div><div class="sdm_clear_float"></div>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.gtrob.com/archives/2372/feed</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2372</post-id>	</item>
		<item>
		<title>i2Head for InMoov 头部组装</title>
		<link>https://www.gtrob.com/archives/2130</link>
					<comments>https://www.gtrob.com/archives/2130#respond</comments>
		
		<dc:creator><![CDATA[高天]]></dc:creator>
		<pubDate>Fri, 29 Mar 2024 02:30:10 +0000</pubDate>
				<category><![CDATA[InMoov2]]></category>
		<category><![CDATA[InMoov制作]]></category>
		<category><![CDATA[人形机器人]]></category>
		<category><![CDATA[机器人项目]]></category>
		<category><![CDATA[inmoov]]></category>
		<category><![CDATA[inmoov2]]></category>
		<category><![CDATA[机器人]]></category>
		<guid isPermaLink="false">https://www.gtrob.com/?p=2130</guid>

					<description><![CDATA[在打印所有零件之前，您应该打印校准器，以 ...]]></description>
										<content:encoded><![CDATA[
<p>在打印所有零件之前，您应该打印校准器，以检查零件是否可以组合在一起。如果您很难将这些部件组合在一起，调整切片机软件的水平扩展设置可以解决这个问题，此设置可能会根据切片机和打印机的不同而有所不同，但用户报告将其设置为 -0.15 是一个很好的起点。</p>



<p>模具尺寸较大，需要较大的打印面积。在开始构建打印头之前检查它是否适合您的打印机。标准 220x220mm 床尺寸即可满足要求。<br>硅参考号是 Smooth-On 00-10。一张皮肤大约需要 500Gr 您可以用油画颜料或颜料给硅上色。您还可以添加植绒以赋予其肌肤触感。因为肤色很浅，略带透明，所以只需要添加很少量即可。主要是白色，然后有一些红色和一点点黄色。<br>15个舵机JX PDI 1109MG（避免使用便宜的SG90，它们不会持续太久）<br>2个舵机JX PDI 6221MG<br>28个磁铁neodyme 10×1.5mm<br>1或2个微型相机（选择带有自动对焦的类型2）</p>



<p><strong>i2Head教程：</strong></p>



<p>以下是头部所需的部件列表和打印数量：</p>



<ul class="wp-block-list">
<li>1x BottomTeeth</li>



<li>1x CheekPuller</li>



<li>1x EarLock (add support)</li>



<li>1x EyebrowSupport</li>



<li>1x Eyebrow</li>



<li>1x FaceHolderLeft</li>



<li>1x FaceHolderRight</li>



<li>1x ForHeadSupport</li>



<li>1x ForHeads</li>



<li>1x GearHolder</li>



<li>1x JawHinge</li>



<li>1x JawPiston (add support)</li>



<li>1x JawSupport</li>



<li>1x Jaw</li>



<li>1x LowBack (compatible from original head)</li>



<li>1x MainGear (compatible from original head)</li>



<li>1x UpperLip</li>



<li>1x Ring (compatible from original head)</li>



<li>1x ServoGear (compatible from original head)</li>



<li>1x SkullServoFix</li>



<li>1x TeethTopHolder</li>



<li>1x TopBackskull (compatible from original head)</li>



<li>1x TopTeeth</li>



<li>1x TopskullFront</li>



<li>1x Topskull (compatible from original head)</li>



<li>1x servoAdapter (only if you use a smaller servo than HS805BB for to rotate the head)</li>



<li>1x servoHornAdapter (only if you use a smaller servo than HS805BB for to rotate the head)</li>
</ul>



<p>打印填充量为 30%，壁厚为 2mm，检查是否有需要支撑的部件。</p>



<ul class="wp-block-list">
<li>Here is the list of parts and the number of prints needed for the mold, select&nbsp;Male&nbsp;or&nbsp;Female:<ul><li>1x InnerMiddleMold1x InnerSidesMold1x OuterBottomMoldFemale (add support)1x OuterBottomMoldMale (add support)1x OuterTopMoldFemale (add support)1x OuterTopMoldMale (add support)</li></ul>打印填充量15%，壁厚2mm，检查是否有需要支撑的部分。</li>
</ul>


<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/2024/03/inmoov-2-2.png" alt = "i2Head" /></div><div class="sdm_download_title">i2Head</div></div><div style="clear:both;"></div><div class="sdm_download_description"><h3 class="entry-title">i2Head for InMoov表情机器人头部</h3>
</div><div class="sdm_download_size"><span class="sdm_download_size_label">大小：</span><span class="sdm_download_size_value">26.325</span></div><div class="sdm_download_version"><span class="sdm_download_version_label">版本：</span><span class="sdm_download_version_value">v2.1</span></div><div class="sdm_download_link"><span class="sdm_download_button"><a href="https://www.gtrob.com/?sdm_process_download=1&download_id=2183" class="sdm_download orange" title="i2Head" target="_blank">立即下载！</a></span></div></div><div class="sdm_clear_float"></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/2024/03/Head-i2-25.png" alt = "i2Eyes" /></div><div class="sdm_download_title">i2Eyes</div></div><div style="clear:both;"></div><div class="sdm_download_description"><h3 class="entry-title">i2Head for InMoov 头部眼睛部分</h3>
</div><div class="sdm_download_size"><span class="sdm_download_size_label">大小：</span><span class="sdm_download_size_value">0.988</span></div><div class="sdm_download_link"><span class="sdm_download_button"><a href="https://www.gtrob.com/?sdm_process_download=1&download_id=2186" class="sdm_download orange" title="i2Eyes" target="_blank">立即下载！</a></span></div></div><div class="sdm_clear_float"></div>



<h4 class="wp-block-heading">下面是组装教程：</h4>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="912" height="868" src="https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-2-1.png" alt="" class="wp-image-2122" style="width:643px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-2-1.png 912w, https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-2-1-300x286.png 300w, https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-2-1-768x731.png 768w" sizes="auto, (max-width: 912px) 100vw, 912px" /></figure>



<p>用 4 个螺丝 (3mmx16mm) 将 MainGear 和 NeckPlateHigh 组装在一起。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="719" height="452" src="https://www.gtrob.com/wp-content/uploads/2024/03/Animation1.gif" alt="" class="wp-image-2131" style="width:646px;height:auto"/></figure>



<p></p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="847" height="692" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-1.png" alt="" class="wp-image-2132" style="width:646px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-1.png 847w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-1-300x245.png 300w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-1-768x627.png 768w" sizes="auto, (max-width: 847px) 100vw, 847px" /></figure>



<p>在顶部添加 ServoGear。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="690" height="610" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-2.png" alt="" class="wp-image-2133" style="width:647px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-2.png 690w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-2-300x265.png 300w" sizes="auto, (max-width: 690px) 100vw, 690px" /></figure>



<p>滑过 GearHolder，确保其可以在两个方向自由旋转。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="857" height="708" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-3.png" alt="" class="wp-image-2134" style="width:646px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-3.png 857w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-3-300x248.png 300w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-3-768x634.png 768w" sizes="auto, (max-width: 857px) 100vw, 857px" /></figure>



<p>将 GearHolder、FaceHolderRight 和 FaceHolderLeft 粘合在一起。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="926" height="739" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-4.png" alt="" class="wp-image-2135" style="width:646px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-4.png 926w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-4-300x239.png 300w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-4-768x613.png 768w" sizes="auto, (max-width: 926px) 100vw, 926px" /></figure>



<p>按下推入两个 JawHinge。如果太松的话，用胶水把它们粘进去。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="822" height="630" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-5.png" alt="" class="wp-image-2136" style="width:644px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-5.png 822w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-5-300x230.png 300w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-5-768x589.png 768w" sizes="auto, (max-width: 822px) 100vw, 822px" /></figure>



<p>用 4 个螺钉 (3mmx16mm) 安装 TeethTopHolder。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="738" height="627" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-6.png" alt="" class="wp-image-2137" style="width:644px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-6.png 738w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-6-300x255.png 300w" sizes="auto, (max-width: 738px) 100vw, 738px" /></figure>



<p>设置两个舵机的角度位置，并确保它们在软件中预设为 90°。（静止位置）</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="685" height="572" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-7.png" alt="" class="wp-image-2138" style="width:643px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-7.png 685w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-7-300x251.png 300w" sizes="auto, (max-width: 685px) 100vw, 685px" /></figure>



<p>将两个 CheekPuller 固定到伺服舵臂上。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="569" height="599" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-8.png" alt="" class="wp-image-2139" style="width:645px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-8.png 569w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-8-285x300.png 285w" sizes="auto, (max-width: 569px) 100vw, 569px" /></figure>



<p>用两个螺钉 (3mmx20mm) 组装 TopTeeth。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="573" height="539" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-9.png" alt="" class="wp-image-2140" style="width:644px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-9.png 573w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-9-300x282.png 300w" sizes="auto, (max-width: 573px) 100vw, 573px" /></figure>



<p>获取两个 JawSupport。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="586" height="606" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-10.png" alt="" class="wp-image-2141" style="width:642px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-10.png 586w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-10-290x300.png 290w" sizes="auto, (max-width: 586px) 100vw, 586px" /></figure>



<p>用 4 个螺丝（3mmx10mm + 螺栓）固定钳口，或者将部件粘在一起。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="598" height="701" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-11.png" alt="" class="wp-image-2142" style="width:648px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-11.png 598w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-11-256x300.png 256w" sizes="auto, (max-width: 598px) 100vw, 598px" /></figure>



<p>用 2 个螺丝 BottomTeeth 将其安装到 Jaw 上。（3毫米×16毫米）</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="628" height="702" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-12.png" alt="" class="wp-image-2143" style="width:652px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-12.png 628w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-12-268x300.png 268w" sizes="auto, (max-width: 628px) 100vw, 628px" /></figure>



<p>将组件夹在 JawHinge 上。它应该自由移动。牙齿应该闭合良好。</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="657" height="662" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-13.png" alt="" class="wp-image-2144" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-13.png 657w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-13-298x300.png 298w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-13-150x150.png 150w" sizes="auto, (max-width: 657px) 100vw, 657px" /></figure>



<p>用两个螺丝添加LowBack。螺丝规格（3毫米×16毫米）</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="980" height="817" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-14.png" alt="" class="wp-image-2145" style="width:660px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-14.png 980w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-14-300x250.png 300w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-14-768x640.png 768w" sizes="auto, (max-width: 980px) 100vw, 980px" /></figure>



<p>按下环，确保孔与 MainGear 的孔对齐。仅从侧面添加 2 个螺钉。（3毫米×16毫米）</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="765" height="654" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-15.png" alt="" class="wp-image-2146" style="width:664px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-15.png 765w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-15-300x256.png 300w" sizes="auto, (max-width: 765px) 100vw, 765px" /></figure>



<p>如果您有 HS805BB 伺服系统，请在软件中将喇叭预设为 90%。在喇叭和 ServoGear 之间添加 2 个螺钉（小木螺钉）。</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="671" height="703" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-16.png" alt="" class="wp-image-2147" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-16.png 671w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-16-286x300.png 286w" sizes="auto, (max-width: 671px) 100vw, 671px" /></figure>



<p>如果您有小型舵机 (JX PDI 6221MG 180°)，请在软件中将喇叭预设为 90%。您需要将其与 ServoAdapter 和 ServoHorn 适配器组装在一起。在喇叭和 ServoGear 之间添加 2 个螺钉（小木螺钉）。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="707" height="766" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-17.png" alt="" class="wp-image-2148" style="width:683px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-17.png 707w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-17-277x300.png 277w" sizes="auto, (max-width: 707px) 100vw, 707px" /></figure>



<p>按下 SkullServoFix。使用 4 颗螺钉（木螺钉）将 SkullServoFix、舵机和 GearHolder 固定在一起。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="722" height="683" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-18.png" alt="" class="wp-image-2149" style="width:685px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-18.png 722w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-18-300x284.png 300w" sizes="auto, (max-width: 722px) 100vw, 722px" /></figure>



<p>将舵盘安装到伺服系统 (JX PDI 6221MG 180°) 上，并在软件中将其预设为 90°。用 4 颗螺丝固定 JawPiston。（小伺服螺丝）。将 JawPiston 插入 NoSupport。当伺服系统要通过软件旋转时，它需要能够打开和关闭钳口。</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="679" height="657" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-19.png" alt="" class="wp-image-2150" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-19.png 679w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-19-300x290.png 300w" sizes="auto, (max-width: 679px) 100vw, 679px" /></figure>



<p>使用两个螺钉（小伺服螺钉）添加如下所示的伺服器。确保在软件中将伺服预设为 90° 并安装舵臂。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="716" height="674" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-20.png" alt="" class="wp-image-2151" style="width:691px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-20.png 716w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-20-300x282.png 300w" sizes="auto, (max-width: 716px) 100vw, 716px" /></figure>



<p>用 2 个螺钉（小伺服螺钉）将其固定到舵臂 UpperLip。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="767" height="711" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-21.png" alt="" class="wp-image-2152" style="width:691px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-21.png 767w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-21-300x278.png 300w" sizes="auto, (max-width: 767px) 100vw, 767px" /></figure>



<p>添加左眼组件。并用4颗螺丝（小木螺丝）固定。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="643" height="794" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-22.png" alt="" class="wp-image-2153" style="width:688px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-22.png 643w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-22-243x300.png 243w" sizes="auto, (max-width: 643px) 100vw, 643px" /></figure>



<p>添加右眼组件。并用4颗螺丝（小木螺丝）固定。眼睛组件上方有一个空间，可以用 2 个小螺钉安装摄像头驱动板。确保将相机带（电缆）穿过眼睛和驱动板之间，并允许眼睛自由移动。</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="686" height="793" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-23.png" alt="" class="wp-image-2154" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-23.png 686w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-23-260x300.png 260w" sizes="auto, (max-width: 686px) 100vw, 686px" /></figure>



<p>使用 2 颗螺钉 (3mmx16mm) 添加 ForHeadSupport。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="784" height="798" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-24.png" alt="" class="wp-image-2155" style="width:685px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-24.png 784w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-24-295x300.png 295w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-24-768x782.png 768w" sizes="auto, (max-width: 784px) 100vw, 784px" /></figure>



<p>使用胶水或使用 4 个螺丝将 EyeBrowSupport 与 ForHeadSupport 安装在一起。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="750" height="820" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-25.png" alt="" class="wp-image-2156" style="width:689px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-25.png 750w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-25-274x300.png 274w" sizes="auto, (max-width: 750px) 100vw, 750px" /></figure>



<p>用螺丝（小伺服螺丝）添加眉毛的两个伺服系统。确保在软件中将舵机预设为 90° 并安装舵臂。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="815" height="748" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-26.png" alt="" class="wp-image-2157" style="width:697px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-26.png 815w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-26-300x275.png 300w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-26-768x705.png 768w" sizes="auto, (max-width: 815px) 100vw, 815px" /></figure>



<p>分别用 2 个螺丝将每个 EyeBrow 固定到角上。（小伺服螺丝）</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="812" height="839" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-27.png" alt="" class="wp-image-2158" style="width:703px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-27.png 812w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-27-290x300.png 290w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-27-768x794.png 768w" sizes="auto, (max-width: 812px) 100vw, 812px" /></figure>



<p>将带有螺钉的伺服系统添加到 ForHeadSupport。确保在软件中将舵机预设为 90° 并安装舵臂。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="791" height="794" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-28.png" alt="" class="wp-image-2159" style="width:707px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-28.png 791w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-28-300x300.png 300w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-28-150x150.png 150w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-28-768x771.png 768w" sizes="auto, (max-width: 791px) 100vw, 791px" /></figure>



<p>分别用 2 个螺钉将每个 ForHead 固定到舵臂上。（小伺服螺丝）</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="920" height="838" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-29.png" alt="" class="wp-image-2160" style="width:710px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-29.png 920w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-29-300x273.png 300w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-29-768x700.png 768w" sizes="auto, (max-width: 920px) 100vw, 920px" /></figure>



<p>分别用2个螺丝（3mmx16mm）安装2个TopBackSkull。最好在TopBackSkull内侧添加螺栓。我用小火加热螺栓，然后用钳子将其压入螺栓腔，确保它不会脱落。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="671" height="737" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-30.png" alt="" class="wp-image-2161" style="width:713px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-30.png 671w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-30-273x300.png 273w" sizes="auto, (max-width: 671px) 100vw, 671px" /></figure>



<p>TopSkull 的流程相同。2 个顶部螺丝为 (4mmx20mm)</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="781" height="763" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-31.png" alt="" class="wp-image-2162" style="width:715px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-31.png 781w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-31-300x293.png 300w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-31-768x750.png 768w" sizes="auto, (max-width: 781px) 100vw, 781px" /></figure>



<p>TopSkullFront 的流程相同。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="670" height="753" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-32.png" alt="" class="wp-image-2163" style="width:716px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-32.png 670w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-32-267x300.png 267w" sizes="auto, (max-width: 670px) 100vw, 670px" /></figure>



<p>TopSkullFront 的流程相同。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="633" height="756" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-33.png" alt="" class="wp-image-2164" style="width:713px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-33.png 633w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-33-251x300.png 251w" sizes="auto, (max-width: 633px) 100vw, 633px" /></figure>



<p>两侧分别用螺丝（3mmx16mm）添加EarLock。</p>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="586" height="688" src="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-34.png" alt="" class="wp-image-2165" style="width:715px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-34.png 586w, https://www.gtrob.com/wp-content/uploads/2024/03/Head-i2-34-256x300.png 256w" sizes="auto, (max-width: 586px) 100vw, 586px" /></figure>



<p>请注意，i2Eyes 与原始 eyeX 和 eyeY 同步。</p>



<p>i2Eyelids 也与原始眼睑伺服系统同步。</p>



<p>这将来可能会改变，但目前它允许使用标准手势来操作 i2Eyes 和 i2Eyelids。</p>



<p>以下是新伺服系统的列出名称：</p>



<h2 class="wp-block-heading">眼睛</h2>



<p>i01_head_eyeLeftUD<br>i01_head_eyeLeftLR<br>i01_head_eyeRightUD<br>i01_head_eyeRightLR</p>



<h2 class="wp-block-heading">眼睑</h2>



<p>i01_head_eyelidLeftUpper<br>i01_head_eyelidLeftLower<br>i01_head_eyelidRightUpper<br>i01_head_eyelidRightLower</p>



<h2 class="wp-block-heading">眉毛</h2>



<p>i01_head_eyebrowRight<br>i01_head_eyebrowLeft</p>



<h2 class="wp-block-heading">脸颊</h2>



<p>i01_head_cheekRight<br>i01_head_cheekLeft</p>



<h2 class="wp-block-heading">上唇</h2>



<p>i01_head_upperLip</p>



<h2 class="wp-block-heading"> 头</h2>



<p>i01_head_forheadRight<br>i01_head_forheadLeft</p>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.gtrob.com/archives/2130/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2130</post-id>	</item>
		<item>
		<title>InMoov更新了2.0版本了</title>
		<link>https://www.gtrob.com/archives/2121</link>
					<comments>https://www.gtrob.com/archives/2121#respond</comments>
		
		<dc:creator><![CDATA[高天]]></dc:creator>
		<pubDate>Fri, 29 Mar 2024 01:27:52 +0000</pubDate>
				<category><![CDATA[InMoov2]]></category>
		<guid isPermaLink="false">https://www.gtrob.com/?p=2121</guid>

					<description><![CDATA[InMoov2.0版本现在主要新头部和手 ...]]></description>
										<content:encoded><![CDATA[
<p>InMoov2.0版本现在主要新头部和手部的设计和机动化。</p>



<p>该新头与三活塞颈部和 InMoov 主体的其余部分兼容。它有一个用一些 3D 打印模具制成的硅皮肤，可以做面部表情。</p>



<p>这是女性版本：</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="974" src="https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-female-version-1024x974.png" alt="" class="wp-image-2124" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-female-version-1024x974.png 1024w, https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-female-version-300x285.png 300w, https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-female-version-768x731.png 768w, https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-female-version.png 1175w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>这是男版：</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="765" height="787" src="https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-male-version.jpg" alt="" class="wp-image-2125" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-male-version.jpg 765w, https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-male-version-292x300.jpg 292w" sizes="auto, (max-width: 765px) 100vw, 765px" /></figure>
</div>


<p></p>



<p>这是内部结构：</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="962" height="1024" src="https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-2-2.png" alt="" class="wp-image-2123" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-2-2.png 962w, https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-2-2-282x300.png 282w, https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-2-2-768x817.png 768w" sizes="auto, (max-width: 962px) 100vw, 962px" /></figure>
</div>

<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="912" height="868" src="https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-2-1.png" alt="" class="wp-image-2122" srcset="https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-2-1.png 912w, https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-2-1-300x286.png 300w, https://www.gtrob.com/wp-content/uploads/2024/03/inmoov-2-1-768x731.png 768w" sizes="auto, (max-width: 912px) 100vw, 912px" /></figure>
</div>


<p></p>



<p>还在 Myrobotlab 中实现了这些面部表情，因此测试和使用它非常容易。</p>



<p>要启动 i2Head 的所有伺服系统，请通过 InMoov UI 启动头部，然后会出现一个切换按钮。单击该按钮将启动所有必要的伺服系统。您需要校准它们并将它们连接到controller4 (arduino)。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.gtrob.com/archives/2121/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2121</post-id>	</item>
		<item>
		<title>Open5x：基于I3结构的5自由度3D打印切割一体机</title>
		<link>https://www.gtrob.com/archives/1799</link>
					<comments>https://www.gtrob.com/archives/1799#comments</comments>
		
		<dc:creator><![CDATA[高天]]></dc:creator>
		<pubDate>Sat, 09 Apr 2022 02:40:04 +0000</pubDate>
				<category><![CDATA[3D打印机]]></category>
		<category><![CDATA[教程]]></category>
		<guid isPermaLink="false">https://www.gtrob.com/?p=1799</guid>

					<description><![CDATA[常规 3 轴 3D 打印的常见逐层沉积简 ...]]></description>
										<content:encoded><![CDATA[
<p>常规 3 轴 3D 打印的常见逐层沉积简化了制造过程和 3D 打印机的机械设计。然而，由此产生的 3D 打印物体具有一些不利的特性，包括可见层、不均匀的结构强度和支撑材料。</p>



<p>为了克服这些问题，研究人员使用机械臂和多轴 CNC 将材料沉积在保形层中。保形沉积通过无支撑打印和弯曲层沉积提高了 3D 打印部件的质量。然而，由于高成本和技术复杂性，这种多轴 3D 打印对于许多人来说是无法访问的。此外，对保形切片器的有限 GUI 支持为用户创造了额外的障碍。</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="909" height="1024" src="https://www.gtrob.com/wp-content/uploads/2022/04/gantry_assembly-909x1024.jpg" alt="" class="wp-image-1810" srcset="https://www.gtrob.com/wp-content/uploads/2022/04/gantry_assembly-909x1024.jpg 909w, https://www.gtrob.com/wp-content/uploads/2022/04/gantry_assembly-266x300.jpg 266w, https://www.gtrob.com/wp-content/uploads/2022/04/gantry_assembly-768x865.jpg 768w, https://www.gtrob.com/wp-content/uploads/2022/04/gantry_assembly.jpg 1305w" sizes="auto, (max-width: 909px) 100vw, 909px" /></figure>
</div>


<p><strong>为了向更多的制造商和研究人员开放多轴 3D 打印，我们设计了一种廉价且易于使用的方法将普通 3D 打印机升级到 5 轴。</strong>我们还开发了一种基于 GUI 的保形切片器，集成在流行的 CAD 软件包中。它们共同为设计、模拟和创建保形打印的 3D 模型提供了一个可访问的工作流程。</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="679" src="https://www.gtrob.com/wp-content/uploads/2022/04/Rotating_gantry_parts-1024x679.jpg" alt="" class="wp-image-1804" srcset="https://www.gtrob.com/wp-content/uploads/2022/04/Rotating_gantry_parts-1024x679.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2022/04/Rotating_gantry_parts-300x199.jpg 300w, https://www.gtrob.com/wp-content/uploads/2022/04/Rotating_gantry_parts-768x509.jpg 768w, https://www.gtrob.com/wp-content/uploads/2022/04/Rotating_gantry_parts-1536x1018.jpg 1536w, https://www.gtrob.com/wp-content/uploads/2022/04/Rotating_gantry_parts-2048x1357.jpg 2048w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p><strong>我们希望有更多的爱好者和制造商参与 5 轴 3D 打印</strong></p>



<p>Prusa i3 MK3s 被选为基础打印机，因为它可以说是拥有大量用户社区的 FDM 桌面 3D 打印机最流行/最常见的硬件。我们也很欣赏 Prusa i3 的开放性，这使得工作变得更加容易。</p>



<p>这项工作的灵感来自最新的增材制造研究和个人制造中展示的各种其他创造性 3D 打印技术。该项目展示了如何将流行的现成 3 轴 3D 打印机升级为 5 轴 3D 打印。</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1024" height="910" src="https://www.gtrob.com/wp-content/uploads/2022/04/open5x-figures.jpg" alt="" class="wp-image-1800" srcset="https://www.gtrob.com/wp-content/uploads/2022/04/open5x-figures.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2022/04/open5x-figures-300x267.jpg 300w, https://www.gtrob.com/wp-content/uploads/2022/04/open5x-figures-768x683.jpg 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>

<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/2022/04/5_axis_Prusa-1024x576.jpg" alt="" class="wp-image-1802" srcset="https://www.gtrob.com/wp-content/uploads/2022/04/5_axis_Prusa-1024x576.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2022/04/5_axis_Prusa-300x169.jpg 300w, https://www.gtrob.com/wp-content/uploads/2022/04/5_axis_Prusa-768x432.jpg 768w, https://www.gtrob.com/wp-content/uploads/2022/04/5_axis_Prusa-1536x864.jpg 1536w, https://www.gtrob.com/wp-content/uploads/2022/04/5_axis_Prusa.jpg 1684w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<div ><iframe loading="lazy" src="//player.bilibili.com/player.html?aid=768088522&#038;bvid=BV1qr4y1n7VL&#038;cid=571478140&#038;p=1&#038;autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" width="100%" height="600"> </iframe></div>



<h3 class="wp-block-heading has-text-align-center">免费注册会员后下载</h3>


<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="http://www.gtrob.com/wp-content/uploads/2022/04/open5x-figures.jpg" alt = "5自由度Open5x模型" /></div><div class="sdm_download_title">5自由度Open5x模型</div></div><div style="clear:both;"></div><div class="sdm_download_description"><h5 class="entry-title">基于I3结构的5自由度3D打印切割一体机模型文件</h5>
</div><div class="sdm_download_link"><span class="sdm_download_button"><a href="https://www.gtrob.com/?sdm_process_download=1&download_id=1902" class="sdm_download orange" title="5自由度Open5x模型" target="_self">立即下载！</a></span></div></div><div class="sdm_clear_float"></div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.gtrob.com/archives/1799/feed</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1799</post-id>	</item>
	</channel>
</rss>
