Last active
April 22, 2023 01:34
-
-
Save NeoTech/8f046b3fd65d2ec7e3550db88fc78d20 to your computer and use it in GitHub Desktop.
Revisions
-
NeoTech revised this gist
Feb 11, 2021 . 1 changed file with 24 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ # Start settings for cura std cetus mk2 ``` ;---Start GCODE CURA for CETUS MKII-- M104 S{material_print_temperature}; set the extruder temperature and go on @@ -28,6 +28,29 @@ G92 E0; reset E G4 P600 ; Wait 600ms ``` # Start settings Cura - tinyfab ``` M104 S{material_print_temperature}; set the extruder temperature and go on M109 S{material_print_temperature}; set the extruder temperature and wait M17; enable stepper motors G28 ; home all axes M82; extruder absolute mode G1 X130 Y50 Z10 F400; get nozzle height ; G30 Z0.75 ; Probes for 0.75 G1 Z20 G1 X175 Y1 F600 ; go to priming position M109 S[first_layer_temperature]; wait for temperature to be reached G92 E0 ; reset extruder position ; prime nozzle G1 X175 Y1 Z0.4 F600 G1 E30 Y40 F250 ``` # End settings for Cura std CETUS ``` M109 ;switch off extruder -
NeoTech revised this gist
Feb 11, 2021 . 1 changed file with 5 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,5 @@ # Start settings for cura ``` ;---Start GCODE CURA for CETUS MKII-- M104 S{material_print_temperature}; set the extruder temperature and go on M109 S{material_print_temperature}; set the extruder temperature and wait @@ -25,8 +26,10 @@ G1 Y70.00 E9 F600 G92 E0; reset E G4 P600 ; Wait 600ms ``` # End settings for Cura std CETUS ``` M109 ;switch off extruder M191 ;switch off heated bed G90 ;sets motion in absolute mode @@ -35,4 +38,5 @@ G1 Y0 F2000 G1 X180 F2000 M2 ;end of program M104 S0 ;turn off head heater M106 S0 ``` -
NeoTech created this gist
Feb 11, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,38 @@ # Start settings for cura ;---Start GCODE CURA for CETUS MKII-- M104 S{material_print_temperature}; set the extruder temperature and go on M109 S{material_print_temperature}; set the extruder temperature and wait M82 ; absolute extrusion mode M204 P3000; set acceleration G90; sets motion in absolute mode G92 E0 ; reset step E G1 Z0 F2000 ;home Z G1 Y0 F2000 ;home Y G1 X0 F2000 ;home X M206 X-180 ; Set offset to 0 the X coordinates; ;--------------------| WARNING CALIBRATE BEFORE SW CETUS STUDIO |--------------------------- G1 Z0 ; it moves to the height Z (VALUE HEIGHT CETUS STUDIO) M206 Z0 ; set coordinates "0" to this height "Z" ;--------------------------------------------------------------------------------------- M92 E234 ; Set axis_steps_per_unit extruder ,allows you to set 100% flow Cura will give right length ; and filament length information. You can use 3-4mm retraction G1 X8 Y10.00 F9000 G1 E2 F22000 G1 Y70.00 E9 F600 G92 E0; reset E G4 P600 ; Wait 600ms # End settings for Cura std CETUS M109 ;switch off extruder M191 ;switch off heated bed G90 ;sets motion in absolute mode G1 Z280.00 F2000 ; Return G1 Y0 F2000 G1 X180 F2000 M2 ;end of program M104 S0 ;turn off head heater M106 S0