snakemake_logo
parent
43e73b7291
commit
c3401f1680
|
@ -493,10 +493,10 @@
|
|||
|
||||
|
||||
|
||||
// deltazeus /w e3dv6 // changed
|
||||
#define DEFAULT_Kp 32.65
|
||||
#define DEFAULT_Ki 2.89
|
||||
#define DEFAULT_Kd 92.27
|
||||
// deltazeus /w e3dv6 normalized values // changed
|
||||
#define DEFAULT_Kp 33.00
|
||||
#define DEFAULT_Ki 3.00
|
||||
#define DEFAULT_Kd 95.00
|
||||
|
||||
// stoffel-hotend
|
||||
//#define DEFAULT_Kp 21.80
|
||||
|
@ -673,7 +673,7 @@
|
|||
#define DELTA_DIAGONAL_ROD 202.0 // (mm) changed
|
||||
|
||||
// Distance between bed and nozzle Z home position
|
||||
#define DELTA_HEIGHT 196.35 // (mm) Get this value from G33 auto calibrate // changed
|
||||
#define DELTA_HEIGHT 197.0 // (mm) Get this value from G33 auto calibrate // changed
|
||||
|
||||
#define DELTA_ENDSTOP_ADJ { -0.1, -0.20, 0.0 } // Get these values from G33 auto calibrate
|
||||
|
||||
|
@ -989,7 +989,7 @@
|
|||
/**
|
||||
* The BLTouch probe uses a Hall effect sensor and emulates a servo.
|
||||
*/
|
||||
#define BLTOUCH
|
||||
//#define BLTOUCH
|
||||
|
||||
/**
|
||||
* Pressure sensor with a BLTouch-like interface
|
||||
|
@ -2324,12 +2324,12 @@
|
|||
// @section extras
|
||||
|
||||
// Increase the FAN PWM frequency. Removes the PWM noise but increases heating in the FET/Arduino
|
||||
//#define FAST_PWM_FAN
|
||||
#define FAST_PWM_FAN //changed, needed for sunon fans
|
||||
|
||||
// Use software PWM to drive the fan, as for the heaters. This uses a very low frequency
|
||||
// which is not as annoying as with the hardware PWM. On the other hand, if this frequency
|
||||
// is too low, you should also increment SOFT_PWM_SCALE.
|
||||
//#define FAN_SOFT_PWM
|
||||
//#define FAN_SOFT_PWM //changed, needed fot sunon fans
|
||||
|
||||
// Incrementing this by 1 will double the software PWM frequency,
|
||||
// affecting heaters, and the fan if FAN_SOFT_PWM is enabled.
|
||||
|
|
|
@ -391,7 +391,7 @@
|
|||
// When first starting the main fan, run it at full speed for the
|
||||
// given number of milliseconds. This gets the fan spinning reliably
|
||||
// before setting a PWM value. (Does not work with software PWM for fan on Sanguinololu)
|
||||
//#define FAN_KICKSTART_TIME 100
|
||||
#define FAN_KICKSTART_TIME 500
|
||||
|
||||
// Some coolers may require a non-zero "off" state.
|
||||
//#define FAN_OFF_PWM 1
|
||||
|
@ -1606,7 +1606,7 @@
|
|||
#define LIN_ADVANCE
|
||||
#if ENABLED(LIN_ADVANCE)
|
||||
//#define EXTRA_LIN_ADVANCE_K // Enable for second linear advance constants
|
||||
#define LIN_ADVANCE_K 0 // Unit: mm compression per 1mm/s extruder speed
|
||||
#define LIN_ADVANCE_K 0.38 // Unit: mm compression per 1mm/s extruder speed
|
||||
//#define LA_DEBUG // If enabled, this will generate debug information output over USB.
|
||||
#define EXPERIMENTAL_SCURVE // Enable this option to permit S-Curve Acceleration
|
||||
#endif
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
|
@ -0,0 +1,29 @@
|
|||
// some basic 2d-to-3d-extrusion of Vectorfiles
|
||||
// by zeus - zeus@ctdo.de - CC-BY-NC-4.0
|
||||
// -> https://www.thingiverse.com/zeus
|
||||
// -> https://github.com/zeus86
|
||||
// 2021-02-18
|
||||
// ###############
|
||||
h=4; //height
|
||||
w=25; //width
|
||||
l=112.5; //lenght
|
||||
hd=10; //hole_dia
|
||||
emd=1; // embossing depth
|
||||
$fn=100; //resolution
|
||||
// ###############
|
||||
difference(){
|
||||
translate([0,0,h/2*1]){
|
||||
hull(){
|
||||
translate([+(l-w)/2,0,0])cylinder(h=h,r=w/2,center=true,$fn=100);
|
||||
translate([-(l-w)/2,0,0])cylinder(h=h,r=w/2,center=true,$fn=100);
|
||||
}
|
||||
}
|
||||
translate([w/3,0,h-emd]){
|
||||
scale([0.66,0.66,0.66]){
|
||||
linear_extrude(height = h/2*1){
|
||||
import("snakemake_sw.svg",center=true);
|
||||
}
|
||||
}
|
||||
}
|
||||
translate([-(l/2)+(w/3),0,h/2])cylinder(h=h+0.1,r=hd/2,center=true);
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 9.2 KiB |
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 9.3 KiB |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue