├── .gitignore ├── .jekyll-metadata ├── LICENSE ├── README.md └── printers └── re_d_bot_v1 ├── base ├── 18_Corner_bracket.STL ├── 1_Endstop_x_flange.STL ├── 1_Endstop_y_bracket.STL ├── 1_Endstop_z_base_part1.STL ├── 1_Endstop_z_base_part2.STL ├── 1_Endstop_z_bracket.STL ├── 1_Extruder_motor_holder.STL ├── 1_Front_corner_left.STL ├── 1_Front_corner_right.STL ├── 1_Guide_Y_left.STL ├── 1_Guide_Y_right.STL ├── 1_Rear_corner_left.STL ├── 1_Rear_corner_right.STL ├── 22_(IF_REQUIRED)_Bearing_Shim.stl ├── 2_Guide_Y_part2.STL ├── 2_Lead_screw_holder_M8.STL ├── 2_Triangle_bottom_plate.STL ├── 2_Triangle_bottom_plate_mirrored.STL ├── 2_Z_motor_mount.STL ├── 32_Wheel_spacer.STL ├── 3_Bed_holder_part1.STL ├── 3_Bed_holder_part2.STL ├── 4_Guide_Z.STL ├── 4_Triangle_table_plate.STL ├── 4_Triangle_table_plate_mirrored.STL └── head │ ├── Belt_holder.STL │ ├── Belt_holder_grill.STL │ ├── Belt_tensioner_base.STL │ ├── Belt_tensioner_end.STL │ ├── Carriage_base_back.STL │ ├── Carriage_base_front.STL │ ├── Decorative_Cover_front_part1.STL │ ├── Decorative_Cover_front_part2.STL │ ├── Decorative_Cover_front_part3.STL │ ├── Decorative_Cover_rear.STL │ ├── E3Dv6_holder_part1.STL │ ├── E3Dv6_holder_part2.STL │ ├── Endstop_X.STL │ ├── Fan_duct_filament_V2.STL │ ├── Fan_duct_filament_V2_nozzle_x2.STL │ ├── Fan_duct_radiator.STL │ ├── Fan_grill_40.STL │ ├── PTFE_Guide.STL │ ├── fan_duct_filament_V2_nozzle.sldprt │ ├── updated_Decorative_Cover_front_part1_no_title.STL │ └── updated_Decorative_Cover_front_part2_no_title.STL └── mods ├── mgn12_y_axis ├── README.md ├── back.stl ├── bottom.stl ├── main.stl └── top.stl └── re_x_carriage ├── Assembly-En.pdf ├── Assembly-Ru.pdf ├── Base_back_1.STL ├── Base_front_1.STL ├── Belt_holder_back_2.STL ├── Belt_holder_front_2.STL ├── Cover_back_1.STL ├── Cover_front_1.STL ├── Cover_front_decor_3.STL ├── Cover_top_1.STL ├── Endstop_x_part1_1.STL ├── Endstop_x_part2_1.STL ├── Fan_duct_filament_holder_1.STL ├── Fan_duct_filament_nozzle_left_1.STL ├── Fan_duct_filament_nozzle_right_1.STL ├── Motor_holder_1.STL ├── README.md ├── Wheel_spacer_mini_8.STL ├── Wheel_spacer_normal_8.STL ├── Wires_guide_1.STL ├── fan_duct_filament_nozzle_left.sldprt └── fan_duct_filament_nozzle_right.sldprt /.gitignore: -------------------------------------------------------------------------------- 1 | *.bat 2 | _site 3 | assets 4 | .jekyll-metadata -------------------------------------------------------------------------------- /.jekyll-metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/.jekyll-metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/README.md -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/18_Corner_bracket.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/18_Corner_bracket.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/1_Endstop_x_flange.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/1_Endstop_x_flange.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/1_Endstop_y_bracket.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/1_Endstop_y_bracket.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/1_Endstop_z_base_part1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/1_Endstop_z_base_part1.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/1_Endstop_z_base_part2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/1_Endstop_z_base_part2.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/1_Endstop_z_bracket.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/1_Endstop_z_bracket.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/1_Extruder_motor_holder.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/1_Extruder_motor_holder.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/1_Front_corner_left.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/1_Front_corner_left.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/1_Front_corner_right.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/1_Front_corner_right.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/1_Guide_Y_left.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/1_Guide_Y_left.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/1_Guide_Y_right.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/1_Guide_Y_right.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/1_Rear_corner_left.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/1_Rear_corner_left.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/1_Rear_corner_right.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/1_Rear_corner_right.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/22_(IF_REQUIRED)_Bearing_Shim.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/22_(IF_REQUIRED)_Bearing_Shim.stl -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/2_Guide_Y_part2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/2_Guide_Y_part2.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/2_Lead_screw_holder_M8.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/2_Lead_screw_holder_M8.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/2_Triangle_bottom_plate.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/2_Triangle_bottom_plate.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/2_Triangle_bottom_plate_mirrored.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/2_Triangle_bottom_plate_mirrored.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/2_Z_motor_mount.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/2_Z_motor_mount.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/32_Wheel_spacer.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/32_Wheel_spacer.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/3_Bed_holder_part1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/3_Bed_holder_part1.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/3_Bed_holder_part2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/3_Bed_holder_part2.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/4_Guide_Z.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/4_Guide_Z.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/4_Triangle_table_plate.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/4_Triangle_table_plate.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/4_Triangle_table_plate_mirrored.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/4_Triangle_table_plate_mirrored.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/Belt_holder.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/Belt_holder.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/Belt_holder_grill.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/Belt_holder_grill.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/Belt_tensioner_base.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/Belt_tensioner_base.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/Belt_tensioner_end.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/Belt_tensioner_end.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/Carriage_base_back.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/Carriage_base_back.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/Carriage_base_front.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/Carriage_base_front.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/Decorative_Cover_front_part1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/Decorative_Cover_front_part1.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/Decorative_Cover_front_part2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/Decorative_Cover_front_part2.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/Decorative_Cover_front_part3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/Decorative_Cover_front_part3.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/Decorative_Cover_rear.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/Decorative_Cover_rear.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/E3Dv6_holder_part1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/E3Dv6_holder_part1.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/E3Dv6_holder_part2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/E3Dv6_holder_part2.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/Endstop_X.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/Endstop_X.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/Fan_duct_filament_V2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/Fan_duct_filament_V2.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/Fan_duct_filament_V2_nozzle_x2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/Fan_duct_filament_V2_nozzle_x2.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/Fan_duct_radiator.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/Fan_duct_radiator.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/Fan_grill_40.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/Fan_grill_40.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/PTFE_Guide.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/PTFE_Guide.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/fan_duct_filament_V2_nozzle.sldprt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/fan_duct_filament_V2_nozzle.sldprt -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/updated_Decorative_Cover_front_part1_no_title.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/updated_Decorative_Cover_front_part1_no_title.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/base/head/updated_Decorative_Cover_front_part2_no_title.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/base/head/updated_Decorative_Cover_front_part2_no_title.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/mgn12_y_axis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/mgn12_y_axis/README.md -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/mgn12_y_axis/back.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/mgn12_y_axis/back.stl -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/mgn12_y_axis/bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/mgn12_y_axis/bottom.stl -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/mgn12_y_axis/main.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/mgn12_y_axis/main.stl -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/mgn12_y_axis/top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/mgn12_y_axis/top.stl -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Assembly-En.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Assembly-En.pdf -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Assembly-Ru.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Assembly-Ru.pdf -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Base_back_1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Base_back_1.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Base_front_1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Base_front_1.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Belt_holder_back_2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Belt_holder_back_2.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Belt_holder_front_2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Belt_holder_front_2.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Cover_back_1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Cover_back_1.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Cover_front_1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Cover_front_1.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Cover_front_decor_3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Cover_front_decor_3.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Cover_top_1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Cover_top_1.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Endstop_x_part1_1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Endstop_x_part1_1.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Endstop_x_part2_1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Endstop_x_part2_1.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Fan_duct_filament_holder_1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Fan_duct_filament_holder_1.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Fan_duct_filament_nozzle_left_1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Fan_duct_filament_nozzle_left_1.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Fan_duct_filament_nozzle_right_1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Fan_duct_filament_nozzle_right_1.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Motor_holder_1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Motor_holder_1.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/README.md -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Wheel_spacer_mini_8.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Wheel_spacer_mini_8.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Wheel_spacer_normal_8.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Wheel_spacer_normal_8.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/Wires_guide_1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/Wires_guide_1.STL -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/fan_duct_filament_nozzle_left.sldprt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/fan_duct_filament_nozzle_left.sldprt -------------------------------------------------------------------------------- /printers/re_d_bot_v1/mods/re_x_carriage/fan_duct_filament_nozzle_right.sldprt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickRimmer/RedBot/HEAD/printers/re_d_bot_v1/mods/re_x_carriage/fan_duct_filament_nozzle_right.sldprt --------------------------------------------------------------------------------