Permalink
Browse files

added homing at end of print for easier retrieval of printed parts

  • Loading branch information...
1 parent af4ea72 commit 52918c91564577c56a4a490156268c8329a37b8a @rkoeppl rkoeppl committed Nov 18, 2016
Showing with 3 additions and 0 deletions.
  1. +3 −0 modules/printengine.pl
View
@@ -318,6 +318,9 @@
Time::HiRes::usleep("$zsleep");
Time::HiRes::usleep("$resin_settling_time_us");
}
+#home Z axis to retrieve printed parts
+my @command_list=('G28 Z');
+send_commands(@command_list);
$fb->clear_screen('ON');
##sendcode- adapted and partially rewritten, inspiration taken from http://www.contraptor.org/about

0 comments on commit 52918c9

Please sign in to comment.