Skip to content
Permalink
Browse files

fixed wait for movement

  • Loading branch information...
rkoeppl committed Jul 13, 2016
1 parent 7dd4087 commit 7c55f968773e57a1d56a4ad37d0c41ad565fd70a
Showing with 1 addition and 1 deletion.
  1. +1 −1 modules/printengine.pl
@@ -308,7 +308,7 @@
my $ztemp=$z+$overshoot;
my @command_list=("G1 Z $ztemp F $Z_speed","G1 Z $z F $Z_speed");
send_commands(@command_list);
my $zsleep=$zdelta*$Z_speed*60*1000000+$overshoot*$Z_speed*60*1000000; #microseconds, conversion from mm/min to mm/s
my $zsleep=$zdelta*$Z_speed/60*1000000+$overshoot*$Z_speed/60*1000000; #microseconds, conversion from mm/min to mm/s
Time::HiRes::usleep("$zsleep");
Time::HiRes::usleep("$resin_settling_time_us");
}

0 comments on commit 7c55f96

Please sign in to comment.
You can’t perform that action at this time.