Commit 3e06eb74 authored by Kliment Yanev's avatar Kliment Yanev

Merge remote-tracking branch 'origin/master' into experimental

parents 01c09c5f 863a6419
...@@ -102,11 +102,11 @@ def estimate_duration(g): ...@@ -102,11 +102,11 @@ def estimate_duration(g):
acceleration = 1500.0 #mm/s/s ASSUMING THE DEFAULT FROM SPRINTER !!!! acceleration = 1500.0 #mm/s/s ASSUMING THE DEFAULT FROM SPRINTER !!!!
layerduration = 0.0 layerduration = 0.0
layerbeginduration = 0.0 layerbeginduration = 0.0
layercount=0
#TODO: #TODO:
# get device caps from firmware: max speed, acceleration/axis (including extruder) # get device caps from firmware: max speed, acceleration/axis (including extruder)
# calculate the maximum move duration accounting for above ;) # calculate the maximum move duration accounting for above ;)
print ".... estimating ...." # print ".... estimating ...."
for i in g: for i in g:
i=i.split(";")[0] i=i.split(";")[0]
if "G4" in i or "G1" in i: if "G4" in i or "G1" in i:
...@@ -147,7 +147,8 @@ def estimate_duration(g): ...@@ -147,7 +147,8 @@ def estimate_duration(g):
totalduration += moveduration totalduration += moveduration
if z > lastz: if z > lastz:
print "layer z: ", lastz, " will take: ", time.strftime('%H:%M:%S', time.gmtime(totalduration-layerbeginduration)) layercount +=1
#print "layer z: ", lastz, " will take: ", time.strftime('%H:%M:%S', time.gmtime(totalduration-layerbeginduration))
layerbeginduration = totalduration layerbeginduration = totalduration
lastx = x lastx = x
...@@ -156,8 +157,8 @@ def estimate_duration(g): ...@@ -156,8 +157,8 @@ def estimate_duration(g):
laste = e laste = e
lastf = f lastf = f
print "Total Duration: " #, time.strftime('%H:%M:%S', time.gmtime(totalduration)) #print "Total Duration: " #, time.strftime('%H:%M:%S', time.gmtime(totalduration))
return time.strftime('%H:%M:%S', time.gmtime(totalduration)) return "{0:d} layers, ".format(int(layercount))+time.strftime('%H:%M:%S', time.gmtime(totalduration))
class Settings: class Settings:
#def _temperature_alias(self): return {"pla":210,"abs":230,"off":0} #def _temperature_alias(self): return {"pla":210,"abs":230,"off":0}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment