1
0
mirror of https://github.com/nophead/Mendel90.git synced 2025-08-15 09:44:02 +02:00

Fixed last commit

This commit is contained in:
Chris Palmer
2016-01-05 19:46:26 +00:00
parent de17806aef
commit 04029133e6
5 changed files with 16920 additions and 7911 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -108,6 +108,7 @@ clip_handles = true;
include_fan = false; include_fan = false;
squeeze = false; // Bodge to make Huxley as small as possible without affecting dibond kits squeeze = false; // Bodge to make Huxley as small as possible without affecting dibond kits
part_fan = fan60x15; part_fan = fan60x15;
extruder = Wades; // Default extruder
raspberry_pi = false; // Raspberry pi mounted on PSU raspberry_pi = false; // Raspberry pi mounted on PSU
raspberry_pi_camera = false; // RPI camera on bar across the back raspberry_pi_camera = false; // RPI camera on bar across the back
light_strip = false; light_strip = false;

View File

@@ -32,6 +32,7 @@ include <../vitamins/components.scad>
include <../vitamins/hot_ends.scad> include <../vitamins/hot_ends.scad>
include <../vitamins/bars.scad> include <../vitamins/bars.scad>
include <../vitamins/pullies.scad> include <../vitamins/pullies.scad>
include <../vitamins/extruders.scad>
include <../vitamins/light_strips.scad> include <../vitamins/light_strips.scad>
module rod(d , l) { module rod(d , l) {

View File

@@ -0,0 +1,19 @@
//
// Mendel90
//
// nop.head@gmail.com
// hydraraptor.blogspot.com
//
// Extruder descriptions
//
extruder_mount_pitch = 50;
Wades = [96, 16, 26, [36, 36, 5], NEMA17, 45];
Direct14 = [63, 0, 20, [28, 26, 3], NEMA14, 35];
function extruder_length(type) = type[0];
function extruder_x_offset(type) = type[1];
function extruder_width(type) = type[2];
function extruder_hole(type) = type[3];
function extruder_motor(type) = type[4];
function extruder_d_screw_length(type) = type[5];