⚠️Original published in the comment section of the G-Code Runtime app
Hello, may I ask if it is possible to use NC variables? For example, in the following usage.
1 @1=200.0
G90 G1 X[@1] F1000.0
⚠️Original published in the comment section of the G-Code Runtime app
Hello, may I ask if it is possible to use NC variables? For example, in the following usage.
1 @1=200.0
G90 G1 X[@1] F1000.0
Hello, This is not possible now. And it's planned for version GCO0302, it will be implemented until July 2024.
The final solution is similar to what you expected.
XPos = 100
X[XPos] F1000.0