├── .gitignore ├── Assembly_Tools └── Shaft_Grinding_Tool │ ├── bottom.stl │ ├── shaft_block v4.step │ ├── tool_1.png │ ├── tool_2.png │ └── top.stl ├── Build_Instructions └── Sherpa_Mini_Build_Instructions_R2_A0.1.pdf ├── CAD ├── sherpa_mini_release_2_rev1.STEP └── sherpa_mini_release_2_rev1.x_t ├── Images └── sherpa_mini_rc1.jpg ├── LICENSE.md ├── Print_Settings_and_File_Key.txt ├── README.md ├── STLs ├── [a]_housing_front_x1_rev15.STL ├── [a]_idler_arm_long_x1_rev16a.STL ├── housing_core_x1_rev16.STL ├── housing_rear_x1_rev17.STL └── optional_parts │ ├── [a]_bondtech_thumbscrew_spacer_x1_rev1.STL │ ├── [a]_housing_front_k_x1_rev15.STL │ └── [a]_idler_arm_short_x1_rev16a.STL └── eDrawings └── sherpa_mini_release_2.EASM /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Assembly_Tools/Shaft_Grinding_Tool/bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/Assembly_Tools/Shaft_Grinding_Tool/bottom.stl -------------------------------------------------------------------------------- /Assembly_Tools/Shaft_Grinding_Tool/shaft_block v4.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/Assembly_Tools/Shaft_Grinding_Tool/shaft_block v4.step -------------------------------------------------------------------------------- /Assembly_Tools/Shaft_Grinding_Tool/tool_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/Assembly_Tools/Shaft_Grinding_Tool/tool_1.png -------------------------------------------------------------------------------- /Assembly_Tools/Shaft_Grinding_Tool/tool_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/Assembly_Tools/Shaft_Grinding_Tool/tool_2.png -------------------------------------------------------------------------------- /Assembly_Tools/Shaft_Grinding_Tool/top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/Assembly_Tools/Shaft_Grinding_Tool/top.stl -------------------------------------------------------------------------------- /Build_Instructions/Sherpa_Mini_Build_Instructions_R2_A0.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/Build_Instructions/Sherpa_Mini_Build_Instructions_R2_A0.1.pdf -------------------------------------------------------------------------------- /CAD/sherpa_mini_release_2_rev1.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/CAD/sherpa_mini_release_2_rev1.STEP -------------------------------------------------------------------------------- /CAD/sherpa_mini_release_2_rev1.x_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/CAD/sherpa_mini_release_2_rev1.x_t -------------------------------------------------------------------------------- /Images/sherpa_mini_rc1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/Images/sherpa_mini_rc1.jpg -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Print_Settings_and_File_Key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/Print_Settings_and_File_Key.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/README.md -------------------------------------------------------------------------------- /STLs/[a]_housing_front_x1_rev15.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/STLs/[a]_housing_front_x1_rev15.STL -------------------------------------------------------------------------------- /STLs/[a]_idler_arm_long_x1_rev16a.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/STLs/[a]_idler_arm_long_x1_rev16a.STL -------------------------------------------------------------------------------- /STLs/housing_core_x1_rev16.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/STLs/housing_core_x1_rev16.STL -------------------------------------------------------------------------------- /STLs/housing_rear_x1_rev17.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/STLs/housing_rear_x1_rev17.STL -------------------------------------------------------------------------------- /STLs/optional_parts/[a]_bondtech_thumbscrew_spacer_x1_rev1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/STLs/optional_parts/[a]_bondtech_thumbscrew_spacer_x1_rev1.STL -------------------------------------------------------------------------------- /STLs/optional_parts/[a]_housing_front_k_x1_rev15.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/STLs/optional_parts/[a]_housing_front_k_x1_rev15.STL -------------------------------------------------------------------------------- /STLs/optional_parts/[a]_idler_arm_short_x1_rev16a.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/STLs/optional_parts/[a]_idler_arm_short_x1_rev16a.STL -------------------------------------------------------------------------------- /eDrawings/sherpa_mini_release_2.EASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Annex-Engineering/Sherpa_Mini-Extruder/HEAD/eDrawings/sherpa_mini_release_2.EASM --------------------------------------------------------------------------------