|
MarlinKimbra firmware e flusso canalizzatore con Simplify3d July 07, 2015 11:24AM |
Registered: 10 years ago Posts: 13 |
; Start GCode G21; Units to millimeters M107; Fans OFF G90; Absolute Positioning M82; Extruder to Absolute Mode G28; Move to Origin (First X/Y then Z) G29; Detailed Z-Probe G91; Relative Positioning G92 E0; Reset Extruder Lenght G1 E+220 F1000; Bring filament to nozzle G92 E0; Reset Extruder Lenght G90;
;Tool Change GCode T[old_tool]; Select last used tool G60; Store hotend position G92 E0; Reset current extruder G1 E-5 F6000; Retract filament out of melting zone G61 Z3 F300; Lift head up by 3mm G1 X0 Y0 F3000; Park head at build origins G1 E-120 F6000; Retract filament to parking zone T[new_tool]; Select new extruder G92 E0; reset extruder G1 E60 F2000; advance filament to coldend zone G1 E60 F100; slowing down till melting zone G61 Z1 F300; move head down near melting zone but don't put nozzle under pressure preventing oozing G61 X Y F3000; bring back hotend to last saved X Y position G61 Z F300; bring back nozzle in contact with last layer G1 E3 F100; going "under pressure" G92 E0; Reset and we're ready to go
;Ending GCode M104 S0 ; turn off extruder temperature M140 S0; turn off bed Temperature M107; Fans OFF G91; Relative Positioning G1 Z+10; Lift Nozzle by 10mm M104 T0 S0; G90; Absolute Positioning G1 X0 Y180; Park head M84; Motors off G92 E0; Reset current extruder G1 E-5 F6000; Retract filament out of melting zone G1 E-120 F6000; Retract filament to parking zone
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d July 07, 2015 12:39PM |
Registered: 11 years ago Posts: 6,409 |
;Tool Change GCode T[old_tool]; Select last used tool G60; Store hotend position G92 E0; Reset current extruder G1 E-5 F6000; Retract filament out of melting zone G61 Z3 F300; Lift head up by 3mm G1 X0 Y0 F3000; Park head at build origins G1 E-120 F6000; Retract filament to parking zone
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d July 08, 2015 08:09AM |
Registered: 10 years ago Posts: 13 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d July 08, 2015 08:30AM |
Registered: 11 years ago Posts: 6,409 |
;Tool Change GCode T[old_tool]; Select last used tool G60; Store hotend position G92 E0; Reset current extruder G1 E-5 F6000; Retract filament out of melting zone G61 Z3 F300; Lift head up by 3mm G1 X0 Y0 F3000; Park head at build origins G1 E-120 F6000; Retract filament to parking zone
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 03, 2015 03:15AM |
Registered: 10 years ago Posts: 59 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 03, 2015 03:18AM |
Registered: 10 years ago Posts: 59 |
startGCode
; EVO inizio
G28 ; Home extruder
G1 Z 5 F{Z_TRAVEL_SPEED}
{IF_EXT0}T0
{IF_EXT1}T1
M107 ; Turn off fan
G90 ; Absolute positioning
M82 ; Extruder in absolute mode
{IF_BED}M190 S{BED}
; Activate all used extruder
{IF_EXT0}M104 T0 S{TEMP0}
{IF_EXT1}M104 T1 S{TEMP1}
G92 E0 ; Reset extruder position
; Wait for all used extruders to reach temperature
{IF_EXT0}M109 T0 S{TEMP0}
{IF_EXT1}M109 T1 S{TEMP1}
endGCode
; EVO fine
;G1 X0 Y0 Z130 ; Get extruder out of way. Uncomment to use!
M107 ; Turn off fan
; Disable all extruder
G91 ; Relative positioning
G1 E-11 ; Reduce filament pressure
{IF_EXT0}M104 T0 S0
{IF_EXT1}M104 T1 S0
G90 ; Absolute positioning
G92 E0 ; Reset extruder position
M140 S0 ; Disable heated bed
M84 ; Turn steppers off
preSwitchExtruderCode
; EVO prima di cambio estrusore
M117 Cambio colore
G60 ; memorize coordinate
G1 X-25 F10000 ; home x axis
G91 ; relative positioning
G1 F2000 E-100 ; retract old color
postSwitchExtruderCode
; EVO dopo di cambio estrusore
G1 F2000 E70 ; charge new color
G1 F300 E30 ; infill melt-zone
G1 F200 E20
G90
G61 x ; recall x coordinate
G92 E0 ; reset extruder position
G1 F2700 E-2 ; prevent oozing
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 03, 2015 04:38AM |
Registered: 10 years ago Posts: 13 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 03, 2015 07:23AM |
Registered: 10 years ago Posts: 59 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 03, 2015 09:52AM |
Registered: 10 years ago Posts: 59 |


|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 13, 2018 03:50PM |
Registered: 7 years ago Posts: 43 |
Quote
MagoKimbra
Allora è facile....
Nello Start carichi i 4 estrusori finendo con l'ultimo carico nel nozzle, in modo che partendo con:
;Tool Change GCode T[old_tool]; Select last used tool G60; Store hotend position G92 E0; Reset current extruder G1 E-5 F6000; Retract filament out of melting zone G61 Z3 F300; Lift head up by 3mm G1 X0 Y0 F3000; Park head at build origins G1 E-120 F6000; Retract filament to parking zone
Lo scarica e parte con il primo.....
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 13, 2018 07:35PM |
Registered: 10 years ago Posts: 380 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 14, 2018 04:47AM |
Registered: 7 years ago Posts: 43 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 14, 2018 06:51AM |
Registered: 10 years ago Posts: 380 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 14, 2018 07:41AM |
Registered: 7 years ago Posts: 43 |
Quote
claustro
Simplify 3d il multicolore lo faccio solo su R2 Evo , altrimenti per il resto uso un d-bot
La Evo adesso usa i classici due estrusori con due driver , avrei intenzione di fare la modifica per usare 4 estrusori.
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 14, 2018 08:01AM |
Registered: 10 years ago Posts: 380 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 14, 2018 08:32AM |
Registered: 7 years ago Posts: 43 |
Quote
claustro
Uso il sistema di mco676, semplicemente metto qualche perimetro di skirt per compensare il minore caricamento del filamento alla partenza, i successivi cambi di filamento vanno bene
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 14, 2018 07:02PM |
Registered: 10 years ago Posts: 380 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 15, 2018 08:08AM |
Registered: 7 years ago Posts: 43 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 15, 2018 09:09AM |
Registered: 11 years ago Posts: 6,409 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 16, 2018 09:18AM |
Registered: 7 years ago Posts: 43 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 16, 2018 01:42PM |
Registered: 11 years ago Posts: 6,409 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 16, 2018 04:04PM |
Registered: 7 years ago Posts: 43 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d August 17, 2018 07:38AM |
Registered: 7 years ago Posts: 43 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d May 02, 2019 07:12AM |
Registered: 8 years ago Posts: 17 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d May 02, 2019 08:00AM |
Registered: 11 years ago Posts: 6,409 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d May 02, 2019 09:08AM |
Registered: 8 years ago Posts: 17 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d May 02, 2019 09:41AM |
Registered: 11 years ago Posts: 6,409 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d May 02, 2019 10:17AM |
Registered: 8 years ago Posts: 17 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d May 02, 2019 11:28AM |
Registered: 11 years ago Posts: 6,409 |
|
Re: MarlinKimbra firmware e flusso canalizzatore con Simplify3d May 02, 2019 12:13PM |
Registered: 8 years ago Posts: 17 |