You are not logged in.
Pages: 1
I was wondering if it is possible to compute a delay command dynamically in a G-code field, for example:
[[Delay ([[ZLiftDistance]]/[[ZSpeed]] + 0.1)]] ; Wait for the movement finished
instead of just [[Delay 2]] which works.
The above does not seem to work for me...
Thanks!
Last edited by jgrzymisch (2017-05-18 21:19:55)
Offline
[[Delay ([[ZLiftDistance]]/[[ZSpeed]] + 0.1)]]
Change it to
[[Delay {[[ZLiftDistance]]/[[ZSpeed]] + 0.1}]]
Offline
Pages: 1