1
0
mirror of https://github.com/nophead/Mendel90.git synced 2025-08-31 00:39:55 +02:00

This version used for kits 7-

Nut traps moved further from the edge of most parts.
Fixed ribbon clamp slots too deep.
Modified for JHeadMK5.
Changed bed thermsitor type.
Extruder block is now thinner so it can protrude below the carriage.
The idler bolts no go the other way round so the nuts are captive instead of the heads.
60 mm carriage fan.
Spool holders now have tabs for nut traps instead of P clip.
Belt lengths corrected and rounded to tooth pitch.
Metal pulleys modelled.
exploded variable now 0/1 instead of boolean.
Dibond version now has mouse holes for wires and the Y wires run underneath the base.
Added jigs for inserting Jhead and drilling tubes.

Hobbed bolt not shows hob position on the BOM.
Everything in the kit is now in the model and so appears on the BOM.
   Added ribbon cable, wire, heat shrink sleeving, foam spunge, PLA sample.

Completed the kit build manual.
Sub assemblies restructured to reflect the build order.
View files added to make the assembly diagrams.

Fixed sheets.py not working first time run.
This commit is contained in:
Chris Palmer
2012-11-17 10:33:00 +00:00
parent 4141634677
commit 2f70825078
530 changed files with 627906 additions and 537822 deletions

39
scad/small_bits.scad Normal file
View File

@@ -0,0 +1,39 @@
//
// Mendel90
//
// GNU GPL v2
// nop.head@gmail.com
// hydraraptor.blogspot.com
//
include <conf/config.scad>
use <pcb_spacer.scad>
use <wade.scad>
use <z-screw_pointer.scad>
use <tube_cap.scad>
tube_cap_pitch = (tube_height(AL_square_tube) + 1);
module small_bits_stl() {
translate([-Z_screw_dia/2 - 6, Z_screw_dia/ 2 + 12, 0])
wades_gear_spacer_stl();
translate([z_screw_pointer_radius() + 1, -z_screw_pointer_radius(), 0])
rotate([0, 0, 12])
z_screw_pointer_stl();
translate([-z_screw_pointer_radius() + tube_cap_pitch * 2 - 1, -z_screw_pointer_radius() * 2, 0])
rotate([0, 0, 180 + 12])
z_screw_pointer_stl();
for(x = [0 : 1])
for(y = [0 : 1]) {
translate([(x + 0.5) * tube_cap_pitch, (y + 0.5) * tube_cap_pitch, 0])
tube_cap_stl();
translate([-(x + 0.5) * 9, -y * 9, 0])
pcb_spacer_stl();
}
}
small_bits_stl();