Close



Results 1 to 10 of 757

Threaded View

  1. #11
    Of course, it works and you can try it !
    1-just download the file from github : https://github.com/syl-20/Marlin/blo...inting_area.pl
    2-add the path to the post processing script in your slic3r config ("print settings" tab / "output options" section)
    3-add your custom start gcode ("printer settings" tab / "custom gcode" section) like this one : G29 L[G29XMIN] F[G29YMIN] R[G29XMAX] B[G29YMAX] n4

    Thats all !

    Before the script, the gcode is :
    Code:
    ...
    G1 Z5 F5000 ; lift nozzle
    G29 L[G29XMIN] F[G29YMIN] R[G29XMAX] B[G29YMAX] n4
    M109 S200 ; wait for temperature to be reached
    ...
    After the post-processing script, the gcode :
    Code:
    ...
    G1 Z5 F5000 ; lift nozzle
    G29 L73.340 F73.340 R126.660 B126.660 n4
    M109 S200 ; wait for temperature to be reached
    ...
    Last edited by syl20; 10-20-2014 at 03:08 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •