Similar Posts

Subscribe
Notify of
4 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
tomgun
2 years ago

Congratulations to the new printer. You can try the values of normal SV01 or that of SV03. However, the setting must be adapted to the size of the printing bed.

Basically, the printers are all identical. Only the SV01 in the old version has no sensor yet and no touch display. But that has nothing to do with the slicer.

Important is the start and stop G.Code. Simply copy this into the profile of the Pro and it should work.

For example, I used the code of my SV01 for the SVo3 and even for my Tronxy X5SA E2.

If the printer also has a disk with patterns, you can simply open a G-Code file with Word and copy the two parts there.

Here for comparison my SV01 code:

Start Code:

M201 X500.00 Y500.00 Z100.00 E5000.00;Setup machine max accelerationM203 X500.00 Y500.00 Z10.00 E50.00;Setup machine max feedrate

M204 P500.00 R1000.00 T500.00;Setup Print/Retract/Travel acceleration

M205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk

M220 S100;Reset feedrate

M221 S100;Reset Flowrate

;G28;Home

G92 E0;Reset Extruder

G1 Z2.0 F3000;Move Z Axis up

G1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position

G1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line

G1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little

G1 X10.4 Y20 Z0.28 F1500.0 E30;Draw the second line

G92 E0;Reset Extruder

G1 Z2.0 F3000;Move Z Axis up

Stop code at the end:

G91;Relative PositionG1 E-2 F2700;Retract a bit

G1 E-2 Z0.2 F2400;Retract and raise Z

G1 X5 Y5 F3000;Wipe out

G1 Z10;Raise Z more

G90;Absolute positionning

G1 X0 Y{machine_depth};Present print

M106 S0;Turn-off fan

M104 S0;Turn-off hotend

M140 S0;Turn-off bed

M84 X Y E;Disable all steppers but Z

The Home command has taken out because I always let the printer run manuel on home, then after the sensor has been calibrated, the offset has been emptied and stored with a piece of paper. Thus, it does not need a new sensor calibration when starting.

Franky1962
2 years ago

Then take the one that fits best. You may need to adjust some parameters.

Franky1962
2 years ago
Reply to  Anonym300710

Usually it is sufficient to enter the X, Y and Z dimensions of your printer. The rest of Cura will do.