<?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/robot/feed" rel="self" type="application/rss+xml" />
	<link>https://www.gtrob.com</link>
	<description>机器人开源社区，家庭服务机器人 ,个人服务机器人-IBOAI</description>
	<lastBuildDate>Tue, 24 Mar 2026 16:48:44 +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组装说明</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>GTROB与Aero Hand Open 母公司TetherIA达成战略合作</title>
		<link>https://www.gtrob.com/archives/2539</link>
					<comments>https://www.gtrob.com/archives/2539#respond</comments>
		
		<dc:creator><![CDATA[高天]]></dc:creator>
		<pubDate>Sat, 28 Feb 2026 07:05:23 +0000</pubDate>
				<category><![CDATA[机器人项目]]></category>
		<category><![CDATA[资讯]]></category>
		<guid isPermaLink="false">https://www.gtrob.com/?p=2539</guid>

					<description><![CDATA[GTROB与Aero Hand Open ...]]></description>
										<content:encoded><![CDATA[
<p class="has-text-align-center has-medium-font-size"><strong>GTROB与Aero Hand Open 母公司TetherIA（绳肌妙算）达成战略合作！</strong></p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img fetchpriority="high" decoding="async" width="1024" height="576" src="https://www.gtrob.com/wp-content/uploads/2026/01/TetherIA-Founder-CEO-Evan-Tao_JOHN-1024x576.jpg" alt="" class="wp-image-2536" srcset="https://www.gtrob.com/wp-content/uploads/2026/01/TetherIA-Founder-CEO-Evan-Tao_JOHN-1024x576.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2026/01/TetherIA-Founder-CEO-Evan-Tao_JOHN-300x169.jpg 300w, https://www.gtrob.com/wp-content/uploads/2026/01/TetherIA-Founder-CEO-Evan-Tao_JOHN-768x432.jpg 768w, https://www.gtrob.com/wp-content/uploads/2026/01/TetherIA-Founder-CEO-Evan-Tao_JOHN-1536x864.jpg 1536w, https://www.gtrob.com/wp-content/uploads/2026/01/TetherIA-Founder-CEO-Evan-Tao_JOHN.jpg 1920w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p class="has-medium-font-size">Aero Hand Open 是一款低成本、开源、轻量（<strong>&lt; 400克</strong>）、拟人化机器人，由 TetherIA 手工设计和开发，用于 经济实惠的灵巧控研究。仅售价<strong>314美元</strong>，它为昂贵的专有产品提供了有力的替代方案 通过创新的腱驱动技术，在保持高性能的同时提供解决方案。</p>



<p class="has-medium-font-size">TetherIA是一家位于硅谷的全栈机器人公司，Aero Hand Open 是旗下一款设计优良的仿生开源灵巧手。公司由 Tesla  Optimus 灵巧手核心成员与 Waymo 基座大模型早期团队成员共同创立，凭借复合型团队背景及“硬件+AI”的深度整合优势，已构建起涵盖机械结构、驱动控制、数据与算法的端到端创新能力。</p>



<p class="has-medium-font-size"><strong>GTROB</strong>是深耕具身智能多年的机器人开源社区平台，以分享优秀开源机器人项目为己任，普及机器人为目标，创作个人家庭可以承担的机器人，推动具身智能发展普及，造福人类，造福社会！让机器人走入千家万户！</p>



<p class="has-medium-font-size">TetherIA创始人陶一伟（Evan）曾任Tesla Optimus灵巧手负责人，带领团队完成了特斯拉第二代灵巧手的研发，并全程参与了从工程设计、量产落地到机器人大模型早期研发与部署的全流程。在加入特斯拉之前，他曾就职于苹果，担任Vision Pro机械结构设计负责人。</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img 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="(max-width: 1024px) 100vw, 1024px" /></figure>
</div>

<div class="wp-block-image">
<figure class="aligncenter size-large"><img decoding="async" width="1024" height="768" src="https://www.gtrob.com/wp-content/uploads/2026/01/Aero-Hand-单手3D打印套件-1-1024x768.jpg" alt="" class="wp-image-2465" srcset="https://www.gtrob.com/wp-content/uploads/2026/01/Aero-Hand-单手3D打印套件-1-1024x768.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2026/01/Aero-Hand-单手3D打印套件-1-300x225.jpg 300w, https://www.gtrob.com/wp-content/uploads/2026/01/Aero-Hand-单手3D打印套件-1-768x576.jpg 768w, https://www.gtrob.com/wp-content/uploads/2026/01/Aero-Hand-单手3D打印套件-1-1536x1152.jpg 1536w, https://www.gtrob.com/wp-content/uploads/2026/01/Aero-Hand-单手3D打印套件-1-2048x1536.jpg 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
</div>

<div class="wp-block-image">
<figure class="aligncenter size-large is-resized"><img loading="lazy" decoding="async" width="768" height="1024" src="https://www.gtrob.com/wp-content/uploads/2026/01/Aero_Hand03-768x1024.jpg" alt="" class="wp-image-2451" style="aspect-ratio:0.7500070341295968;object-fit:cover;width:1024px" srcset="https://www.gtrob.com/wp-content/uploads/2026/01/Aero_Hand03-768x1024.jpg 768w, https://www.gtrob.com/wp-content/uploads/2026/01/Aero_Hand03-225x300.jpg 225w, https://www.gtrob.com/wp-content/uploads/2026/01/Aero_Hand03.jpg 1024w" sizes="auto, (max-width: 768px) 100vw, 768px" /></figure>
</div>


<p class="has-medium-font-size">祝GTROB与TetherIA（绳肌妙算）越来越好！马年马上起飞！</p>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.gtrob.com/archives/2539/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2539</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>带6自由度机械臂的遥控探测车</title>
		<link>https://www.gtrob.com/archives/2281</link>
					<comments>https://www.gtrob.com/archives/2281#comments</comments>
		
		<dc:creator><![CDATA[高天]]></dc:creator>
		<pubDate>Tue, 22 Apr 2025 03:43:08 +0000</pubDate>
				<category><![CDATA[机器人项目]]></category>
		<category><![CDATA[轮式机器人]]></category>
		<guid isPermaLink="false">https://www.gtrob.com/?p=2281</guid>

					<description><![CDATA[所需零件： 1 个 Arduino Me ...]]></description>
										<content:encoded><![CDATA[<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="768" src="https://www.gtrob.com/wp-content/uploads/2025/04/RC-Rover-with-Robot-Arm-1024x768.webp" alt="" class="wp-image-2278" srcset="https://www.gtrob.com/wp-content/uploads/2025/04/RC-Rover-with-Robot-Arm-1024x768.webp 1024w, https://www.gtrob.com/wp-content/uploads/2025/04/RC-Rover-with-Robot-Arm-300x225.webp 300w, https://www.gtrob.com/wp-content/uploads/2025/04/RC-Rover-with-Robot-Arm-768x576.webp 768w, https://www.gtrob.com/wp-content/uploads/2025/04/RC-Rover-with-Robot-Arm-1536x1152.webp 1536w, https://www.gtrob.com/wp-content/uploads/2025/04/RC-Rover-with-Robot-Arm.webp 1920w" 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="768" src="https://www.gtrob.com/wp-content/uploads/2025/04/RC-Rover-with-Robot-Arm3-1024x768.webp" alt="" class="wp-image-2280" srcset="https://www.gtrob.com/wp-content/uploads/2025/04/RC-Rover-with-Robot-Arm3-1024x768.webp 1024w, https://www.gtrob.com/wp-content/uploads/2025/04/RC-Rover-with-Robot-Arm3-300x225.webp 300w, https://www.gtrob.com/wp-content/uploads/2025/04/RC-Rover-with-Robot-Arm3-768x576.webp 768w, https://www.gtrob.com/wp-content/uploads/2025/04/RC-Rover-with-Robot-Arm3-1536x1152.webp 1536w, https://www.gtrob.com/wp-content/uploads/2025/04/RC-Rover-with-Robot-Arm3.webp 1920w" 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="677" src="https://www.gtrob.com/wp-content/uploads/2025/04/小车电路图-1024x677.jpg" alt="" class="wp-image-2288" srcset="https://www.gtrob.com/wp-content/uploads/2025/04/小车电路图-1024x677.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2025/04/小车电路图-300x198.jpg 300w, https://www.gtrob.com/wp-content/uploads/2025/04/小车电路图-768x508.jpg 768w, https://www.gtrob.com/wp-content/uploads/2025/04/小车电路图.jpg 1217w" 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="712" src="https://www.gtrob.com/wp-content/uploads/2025/04/遥控电路图-1024x712.jpg" alt="" class="wp-image-2290" srcset="https://www.gtrob.com/wp-content/uploads/2025/04/遥控电路图-1024x712.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2025/04/遥控电路图-300x209.jpg 300w, https://www.gtrob.com/wp-content/uploads/2025/04/遥控电路图-768x534.jpg 768w, https://www.gtrob.com/wp-content/uploads/2025/04/遥控电路图.jpg 1184w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p><strong>所需零件：</strong></p>



<p>1 个 Arduino Mega</p>



<p>1 个 Arduino Uno</p>



<p>2 个 NRF24L01 无线模块</p>



<p>2 个 NRF24L01 电源适配器</p>



<p>2 个 37mm 减速直流电机</p>



<p>1 个 L298N 电机驱动器（绿色）</p>



<p>4 个 MG996R 或 MG995 舵机</p>



<p>3 个 MG90 舵机</p>



<p>2 个 操纵杆模块</p>



<p>2 个 电位器</p>



<p>3 个拨动开关</p>



<p>5 个 5mm LED 灯和电阻</p>



<p>1 个迷你面包板</p>



<p>1 个 LM2596 降压稳压器（选择更强大的模块可能更好）</p>



<p>1 个 3S 锂聚合物电池（您可以使用不同的电池）</p>



<p>2 个 18650 锂离子电池和</p>



<p>1 个双电池座（您可以使用不同的电池）各种跳线</p>



<p>4 个 608 轴承</p>



<p>2 个 M8 60mm 螺栓</p>



<p>2 个防松螺母：</p>



<p>M3x6mm 螺栓：</p>



<p>M3x10mm 螺栓</p>



<p>M3x14m 螺栓</p>



<p></p>



<p></p>



<p class="has-medium-font-size"><strong>makerworld打印链接：</strong></p>



<p><a href="https://makerworld.com/zh/models/1342319-rc-rover-with-robot-arm-6-dof#profileId-1383072">https://makerworld.com/zh/models/1342319-rc-rover-with-robot-arm-6-dof#profileId-1383072</a></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/04/RC-Rover-with-Robot-Arm.webp" alt = "带6自由度机械臂的遥控探测车STL和Arduino Code" /></div><div class="sdm_download_title">带6自由度机械臂的遥控探测车STL和Arduino Code</div></div><div style="clear:both;"></div><div class="sdm_download_description"><p>带6自由度机械臂的遥控探测车</p>
<p>RC Rover with Robot Arm 6 DOF STL</p>
<p>RC Rover Arduino Code</p>
<p>&nbsp;</p>
</div><div class="sdm_download_link"><span class="sdm_download_button"><a href="https://www.gtrob.com/?sdm_process_download=1&download_id=2276" class="sdm_download orange" title="带6自由度机械臂的遥控探测车STL和Arduino Code" target="_self">立即下载！</a></span></div></div><div class="sdm_clear_float"></div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.gtrob.com/archives/2281/feed</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2281</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>星球大战里的萌宠机器人R2D2和BB-8</title>
		<link>https://www.gtrob.com/archives/2098</link>
					<comments>https://www.gtrob.com/archives/2098#comments</comments>
		
		<dc:creator><![CDATA[高天]]></dc:creator>
		<pubDate>Tue, 28 Nov 2023 06:13:43 +0000</pubDate>
				<category><![CDATA[机器人项目]]></category>
		<category><![CDATA[轮式机器人]]></category>
		<guid isPermaLink="false">https://www.gtrob.com/?p=2098</guid>

					<description><![CDATA[这是我要发布的最后一个版本,也是最后一个 ...]]></description>
										<content:encoded><![CDATA[
<p>这是我要发布的最后一个版本,也是最后一个版本的R2D2,这个机器人有很多功能供你发现和使用。我在微软出版社发表了一个指南(唯一的文件格式被接受)。</p>



<p>指南包括印刷、装配和基本电子产品.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1024" height="610" src="https://www.gtrob.com/wp-content/uploads/2023/11/R2D21.jpg" alt="" class="wp-image-2101" srcset="https://www.gtrob.com/wp-content/uploads/2023/11/R2D21.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2023/11/R2D21-300x179.jpg 300w, https://www.gtrob.com/wp-content/uploads/2023/11/R2D21-768x458.jpg 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>我自己还没有打印过这个机器人,但是我已经通过设计做了很多次我是舒尔一切都是正确的。</p>



<p>如果你想要pdf格式的指南,戈伯文件和分离的STL文件就不会及时给我发电子邮件,我很乐意免费给你发文件。</p>



<p>重要的是:我没有设计任何其他的电子设备,然后在变速箱的印刷电路板读取/控制在穹顶的功能。所以你是建造者决定不使用什么微控制器</p>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="791" height="674" src="https://www.gtrob.com/wp-content/uploads/2023/11/R2D2-PARTS.jpg" alt="" class="wp-image-2102" style="width:840px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2023/11/R2D2-PARTS.jpg 791w, https://www.gtrob.com/wp-content/uploads/2023/11/R2D2-PARTS-300x256.jpg 300w, https://www.gtrob.com/wp-content/uploads/2023/11/R2D2-PARTS-768x654.jpg 768w" sizes="auto, (max-width: 791px) 100vw, 791px" /></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/2023/11/R2D2-PARTS.jpg" alt = "星球大战里的萌宠机器人R2D2模型文件" /></div><div class="sdm_download_title">星球大战里的萌宠机器人R2D2模型文件</div></div><div style="clear:both;"></div><div class="sdm_download_description"></div><div class="sdm_download_link"><span class="sdm_download_button"><a href="https://www.gtrob.com/?sdm_process_download=1&download_id=2105" class="sdm_download orange" title="星球大战里的萌宠机器人R2D2模型文件" target="_self">立即下载！</a></span></div></div><div class="sdm_clear_float"></div>



<p>另一个简单的机器人构建,橙色帽子将两部分基座连接在一起。上传的尺寸创造了一个6&#8243;球,大约7.5&#8243;高。如果有人想造电器,球是空的.爱上了bb-8。</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="768" src="https://www.gtrob.com/wp-content/uploads/2023/11/IMG_2881-1024x768.jpg" alt="" class="wp-image-2099" srcset="https://www.gtrob.com/wp-content/uploads/2023/11/IMG_2881-1024x768.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2023/11/IMG_2881-300x225.jpg 300w, https://www.gtrob.com/wp-content/uploads/2023/11/IMG_2881-768x576.jpg 768w, https://www.gtrob.com/wp-content/uploads/2023/11/IMG_2881-1536x1152.jpg 1536w, https://www.gtrob.com/wp-content/uploads/2023/11/IMG_2881-2048x1536.jpg 2048w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>打印六块身体和身体,打印两块身体。圈将身体的两个部分固定在一起,圈内的圈则适合隐藏接缝。我很满意大部分的适合,但它确实需要一些塑造和磨砂。我建议打印一个身体环和一个身体盖后,你打印身体的部分,并根据需要调整。</p>



<p>创意设计归功于迪士尼和工业光和魔术(谢谢灵感!)。3d文件是在4d电影院建立的,基于对网站上的图像的视觉解读。这个机器人并不是按任何特定的尺度构建的,可能与屏幕版本的机器人有不同的比例,请接受这些。</p>



<p>更新2.0:所有穹顶文件都已修改,下载所有文件以完成升级。在穹顶底部增加一个橙色的细节戒指,以更好地匹配真正的bb-8。部件适合舒适,如果你有一个热枪,你可以软化的塑料,只要足够的模具它的匹配件。慢慢来,不要过热,否则你可能会再次打印它!</p>



<p>我加了一个&#8221;轻&#8221;版的尸体档案。如果你不需要球形的内部,这个文件将减少塑料的数量用于打印。</p>



<p>更新0:新的侧面板文件已经创建,下载所有的&#8221;帽子&#8221;和&#8221;插入&#8221;来升级您的bb-8!我研究这些已经有一段时间了,最近我找到了一个很好的资源,说明小组的工作方式。我把原来的帽子文件留在网上了,它被改名为&#8221;bb-8-体_简化&#8221;。</p>



<p>更新3.1:我添加了一组&#8221;F&#8221;面板,显然我的参考照片有一个翻转的图像,还有一个我没有模仿过的不同的面板。我还改进了主穹顶文件,增加了多边形计数(4x),所以它没有原来的&#8221;面&#8221;。还改进了中间细节环(文件&#8217;b-8_DOME中间圈),以匹配新的穹顶文件。还有一个稍有改进的小镜头(在&#8217;bb-8_dme_LES&#8217;文件中)。</p>



<p>更新3.2:我添加了一个单色穹顶,它有面板嵌入和线条。有一个要求,一个单件穹顶可以打印时,用户没有多重灯丝颜色。找Bb-8的档案。很简单。有悬垂结构,所以我建议印刷支持。</p>



<p>还有一个新的B插入(bb-8_体_内的br_m_ARM),它带有流行的&#8221;大拇指&#8221;附件。你几乎肯定会需要支持。在文件打印后,手臂可以插入插座和胶合处。火炬需要粘在手臂的末端.打印原来的B插入和新的B插入应该允许您根据需要交换面板。</p>



<p>更新3.3:一个自己打印的制造商要求旋转侧板45度,以更好地匹配实际的机器人。我也把这个小小的修改应用到了&#8221;光&#8221;版本。作为奖励,我创造了一个&#8221;整个身体&#8221;版本,可以一次性打印,这样你就不需要稍后再组装了。</p>



<p>更新3.4:我从一个制造商那里听说,根据他提交的多个YouTube视频,&#8221;A&#8221;面板和插入的内容都被翻翻了。谢谢,马格特,你是对的!在查阅了BB8建筑工地的详细文件后,我发现了一个很棒的PDF文件,列出了每个面板相对于另一个的方向。面板和插入一个已翻转与原始机器人设计匹配。对于那些想查阅该文件的人,我会列出它在网上的当前位置- https://bb8builders.club/wiki/images/6/68/BB-8-V3-Panel-Orientation-Guide.pdf .</p>



<p>我已经有很多称赞的适合和完成的零件,预先警告,公差可以紧密。每个打印机都有不同的功能。用热枪轻轻地加热这些碎片可以使事情变得更容易。</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="800" height="600" src="https://www.gtrob.com/wp-content/uploads/2023/11/IMG_2882.jpg" alt="" class="wp-image-2100" srcset="https://www.gtrob.com/wp-content/uploads/2023/11/IMG_2882.jpg 800w, https://www.gtrob.com/wp-content/uploads/2023/11/IMG_2882-300x225.jpg 300w, https://www.gtrob.com/wp-content/uploads/2023/11/IMG_2882-768x576.jpg 768w" sizes="auto, (max-width: 800px) 100vw, 800px" /></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/2023/11/IMG_2882.jpg" alt = "星球大战里的萌宠机器人BB-8模型文件" /></div><div class="sdm_download_title">星球大战里的萌宠机器人BB-8模型文件</div></div><div style="clear:both;"></div><div class="sdm_download_description"></div><div class="sdm_download_link"><span class="sdm_download_button"><a href="https://www.gtrob.com/?sdm_process_download=1&download_id=2108" class="sdm_download orange" title="星球大战里的萌宠机器人BB-8模型文件" target="_self">立即下载！</a></span></div></div><div class="sdm_clear_float"></div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.gtrob.com/archives/2098/feed</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2098</post-id>	</item>
		<item>
		<title>星球大战绝地_陨落的武士团 BD-1机器人</title>
		<link>https://www.gtrob.com/archives/2087</link>
					<comments>https://www.gtrob.com/archives/2087#respond</comments>
		
		<dc:creator><![CDATA[高天]]></dc:creator>
		<pubDate>Mon, 27 Nov 2023 05:29:39 +0000</pubDate>
				<category><![CDATA[机器人项目]]></category>
		<guid isPermaLink="false">https://www.gtrob.com/?p=2087</guid>

					<description><![CDATA[这是电脑游戏《星球大战》中的一个真人大小 ...]]></description>
										<content:encoded><![CDATA[
<p>这是电脑游戏《星球大战》中的一个真人大小的bd-1机器人。</p>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="1024" height="768" src="https://www.gtrob.com/wp-content/uploads/2023/11/db-12.jpg" alt="" class="wp-image-2089" style="width:840px;height:auto" srcset="https://www.gtrob.com/wp-content/uploads/2023/11/db-12.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2023/11/db-12-300x225.jpg 300w, https://www.gtrob.com/wp-content/uploads/2023/11/db-12-768x576.jpg 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>重要的是:有第二个文件可以添加照明灯和施胶器,如果你想增加施胶器,你需要改变的头从其他东西,所以不要打印在这个东西的头部部分,因为它是最大的部分,需要22小时的打印(在正常质量的任何立方(0.2mm片)。</p>



<p>它是完全清晰的,可以定位在游戏中看到的任何位置。几乎所有的关节都配有凹槽,这样四肢可以在5-10度的台阶上移动,并且在这个位置上坐得非常紧,这样模型就可以站在任何位置,或者可以放在后面的FRR游戏中。<br>在上传文件之前,我已经把它完全打印和组装好了。所有零件的印刷时间约为100小时,最长的单版印刷时间约为23小时。<br>所有部件适合与200x200x205打印床打印机。<br>你可以把它缩小到原来尺寸的80%左右,因为小细节和墙壁厚度是不可能的。大多数地区不需要支持。</p>



<p>打印:当文件名读取(数字)x时,必须根据数字多次打印零件。F.E.如果名字是4x,你必须印4次。<br>如果它读取2x2xm,你必须打印它2次正常和2次镜像。<br>有关零件的方向,请参阅下图：</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="584" src="https://www.gtrob.com/wp-content/uploads/2023/11/bd1printlist-1024x584.jpg" alt="" class="wp-image-2090" srcset="https://www.gtrob.com/wp-content/uploads/2023/11/bd1printlist-1024x584.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2023/11/bd1printlist-300x171.jpg 300w, https://www.gtrob.com/wp-content/uploads/2023/11/bd1printlist-768x438.jpg 768w, https://www.gtrob.com/wp-content/uploads/2023/11/bd1printlist.jpg 1421w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>请参阅装配说明。</p>



<p>搜索bd-1屏幕截图,以找到油漆工作的颜色计划。我强烈建议在装配之前先把所有零件都涂上油漆.</p>



<p>我迫不及待地想看看这个小家伙的其他酷形象。</p>



<p>在设计、装配和文件中花费了近80个小时的时间,使之准确地反映了BD-1。因为我没有任何尺寸,所以我不得不估计尺寸。蹲着的姿势他大约45厘米高。</p>



<p>很快,我将在头部添加一些修改,这样模型可以安装光和一斯廷投掷器,所以bd-1可以扔给所有者三个斯格姆包治疗,就像在游戏中一样。</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1024" height="768" src="https://www.gtrob.com/wp-content/uploads/2023/11/db-1.jpg" alt="" class="wp-image-2088" srcset="https://www.gtrob.com/wp-content/uploads/2023/11/db-1.jpg 1024w, https://www.gtrob.com/wp-content/uploads/2023/11/db-1-300x225.jpg 300w, https://www.gtrob.com/wp-content/uploads/2023/11/db-1-768x576.jpg 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></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/2023/11/db-12.jpg" alt = "星球大战绝地_陨落的武士团 BD-1机器人模型" /></div><div class="sdm_download_title">星球大战绝地_陨落的武士团 BD-1机器人模型</div></div><div style="clear:both;"></div><div class="sdm_download_description"></div><div class="sdm_download_link"><span class="sdm_download_button"><a href="https://www.gtrob.com/?sdm_process_download=1&download_id=2093" class="sdm_download orange" title="星球大战绝地_陨落的武士团 BD-1机器人模型" target="_self">立即下载！</a></span></div></div><div class="sdm_clear_float"></div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.gtrob.com/archives/2087/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2087</post-id>	</item>
	</channel>
</rss>
