Doodle3D / WiFi-Box

The Doodle3D WiFi-Box for wireless 3D-printing
GNU General Public License v3.0
3 stars 1 forks source link

new printer settings (Opiliones printer) #7

Open jeroensomers opened 8 years ago

jeroensomers commented 8 years ago

I have 2 new printers that are compatible with Doodle3D. These 2 can be added and tested for the WiFi-Box

Delta Rostock printers: Opiliones 1L & Opiliones 2L

Official full name of specific printer Opiliones 1L • X, Y, Z bed dimensions X, Y = Ø 500 mm. Z= 750 mm. • Heated bed support: Yes or No No • Filament thickness: 2.89 or 1.75 2.85 mm • Start and end g-code.

START

; Default start code
G28 ; Home extruder
G1 Z15 F{Z_TRAVEL_SPEED}
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}
G92 E0 ; Reset extruder position
; Wait for all used extruders to reach temperature
{IF_EXT0}M109 T0 S{TEMP0}

END

; Default end code
G1 X0 Y0 Z700 ; Get extruder out of way. Uncomment to use!
M107 ; Turn off fan
; Disable all extruder
G91 ; Relative positioning
{IF_EXT0}T0
{IF_EXT0}G1 E-1 ; Reduce filament pressure
M104 T0 S0
G90 ; Absolute positioning
G92 E0 ; Reset extruder position
M140 S0 ; Disable heated bed
M84 ; Turn steppers off

• Driver type: Marlin or Makerbot

Marlin (repetier) . . . . Official full name of specific printer Opiliones 2L

• X, Y, Z bed dimensions X, Y = Ø 500 mm. Z= 710 mm. • Heated bed support: Yes or No YES • Filament thickness: 2.89 or 1.75 2.85 mm • Start and end g-code.

START

; Default start code
G28 ; Home extruder
G1 Z15 F{Z_TRAVEL_SPEED}
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}
G92 E0 ; Reset extruder position
; Wait for all used extruders to reach temperature
{IF_EXT0}M109 T0 S{TEMP0}

END

; Default end code
G1 X0 Y0 Z700 ; Get extruder out of way. Uncomment to use!
M107 ; Turn off fan
; Disable all extruder
G91 ; Relative positioning
{IF_EXT0}T0
{IF_EXT0}G1 E-1 ; Reduce filament pressure
M104 T0 S0
G90 ; Absolute positioning
G92 E0 ; Reset extruder position
M140 S0 ; Disable heated bed
M84 ; Turn steppers off

• Driver type: Marlin or Makerbot

Marlin (repetier)

peteruithoven commented 8 years ago

@jeroensomers Those start and end gcode are not compatible with the doodle3d-client. There are some variables used that we don't support. Let's first verify that these would work with the default start end gcode. That's much more maintainable.