Internal viariables
Posted: Sat Jul 23, 2022 1:01 pm
Hello
I am going to use some internal variables for parametric programing
Is there any way to put a textfield input on the screen to point at the variables?
on the code above before running I would like to see the content
or even better to be able to change the numbers of variable #1 and #2
I am going to use some internal variables for parametric programing
Is there any way to put a textfield input on the screen to point at the variables?
- Code: Select all
#1=300
#2=500
#3=3
#4=0
#5=0
#10=0
M7
M98 P1 L10
M9
M30
O1
#4=#10
#10=#2+#4
G01 X#1 C#10 F10000
#4=#10
#10=#4+#3
G01 C#10 F500
M99
on the code above before running I would like to see the content
or even better to be able to change the numbers of variable #1 and #2