rhawley88
Posts: 5
Joined: Wed Mar 16, 2022 12:08 am

Ender 5 Plus with creality silent board start script

So I'm having this issue with my ender 5 plus with creality silent board upgrade. when ever I do a mesh level in script between g29 or a M420 s1 it does not register my layer 1 temp. I can give it command (M109 S215 T0) and will change the temp at least but wont just take from program the first layer temp. also after mesh my heated bed was turning off had to add that back in. so what code should be used for mesh leveling on simplify3d? If anyone could please help and either edit my code or tell me correct codes to use. Thanks below is my script all I want it to be able to do is do a mesh level at the start and heat to layer one bed and nozzel temp. last would be a purge line a like the double pass



; Ender 5 Plus Custom Start G-code

G28 ;Home

M109 S[extruder0_temperature]; set extruder temperature and wait for temp after bed leveling

M140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature

M190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature

M104 S160; set extruder temperature and wait for temp after bed leveling

M420 S1 ;BLTOUCH mesh generation

M140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature

M190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature

M109 S215 T0; set extruder temperature and wait for temp after bed leveling

M117 Purge Extruder

G1 X0.1 Y20 Z4.3 F5000.0 ; Move to start position

G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed

G92 E0; reset extruder

G1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line

G1 X0.6 Y20.0 Z0.3 F5000.0 ; Move to side a little

G1 X0.6 Y200 Z0.3 F1500.0 E30 ; Draw the second line

G92 E0 ; Reset Extruder

G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed

; End of custom start GCode

M117 Printing...

Return to “Troubleshooting and Bug Reports”