Anycubic vyper printer support

PLEASE Add printer support for the Anycubic Vyper!

3 Likes

I second this, Im not sure why this printer hasnt been added yet.

Use ender cr-6 se and change bed size …

Reviving this old thread since it’s the top hit in Google for “astroprint anycubic vyper”. Should anyone else come across this thread and be looking for Anycubic Vyper support in Astroprint, here is what worked for me. Maybe we can get Astroprint to add this as a “community verified” printer if others weigh in saying that these settings work. (Note that the start and end G-Code below was lifted from Cura 5, which ships with Vyper support.)

Start by creating a custom printer profile.

Bed shape: Rectangular
X mm: 245
Y mm: 245
Z mm: 260
Bed center is zero: off
Heated bed: on
Print file format: GCODE
Slicing engine: Cura 15.04
G-Code Flavor: RepRap (Marlin/…)
No. of extruders: 1
Nozzle Diameter: 0.4
Filament diameter: 1.75mm
Start Commands:

G5
G21 ;metric values
G90 ;absolute positioning
M82 ;set extruder to absolute mode
M107 ;start with the fan off
G28 X0 Y0 ;move X/Y to min endstops
M300 S1318 P266
G28 Z0 ;move Z to min endstops
G0 Z0.2
G92 E0 ;zero the extruded length
G1 X40 E25 F400 ; Extrude 25mm of filament in a 4cm line. Reduce speed (F) if you have a nozzle smaller than 0.4mm!
G92 E0 ;zero the extruded length again
G1 E-1 F500 ; Retract a little
G1 X80 F4000 ; Quickly wipe away from the filament line
M117 ; Printing?

End Commands:

M104 S0 ; turn off extruder
M140 S0 ; turn off bed
M84 ; disable motors
M107
G91 ;relative positioning
G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure
G1 Z+0.5 E-5 ;X-20 Y-20 F{speed_travel} ;move Z up a bit and retract filament even more
G28 X0 ;Y0 ;move X/Y to min endstops, so the head is out of the way
G1 Y180 F2000
M84 ;steppers off
G90
M300 S1318 P266