Hello Guest it is March 19, 2024, 01:01:57 AM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - TPS

311
German / Re: ATC eigenbau
« on: August 10, 2021, 11:33:52 AM »
Servus,
ein paar weitere Informationen über Deine verbaute Hardware wären schon nicht schlecht.

312
General Mach Discussion / Re: Problem reading G31 sytem varibles
« on: August 05, 2021, 12:48:22 PM »
yes sure.
Code: [Select]
myvariable = 1.234
SetVar(1234,myvariable)

even both arguments can be a VB variable

Code: [Select]
myvariable = 1.234
mysetvar = 1234

SetVar(mysetvar,myvariable)


313
General Mach Discussion / Re: Problem reading G31 sytem varibles
« on: August 05, 2021, 02:43:09 AM »
from VB script documentation:

SetVar

Sub SetVar(VarNum As Integer, Val As Double)

This function sets the Mach variable specified by VarNum to the value given by Val.
Mach variables are accessible both to CB scripts, using the SetVar() and GetVar()
functions, as well as G-code programs, using the #nnnn syntax.
Arguments:
VarNum is Integer the number of the Mach variable to be set.
Val is the Double value to which the variable will be set
Return Value:
None

Example:

‘ Set a variable 1234 to our target position of 2.3456
SetVar(1234, 2.3456)

‘ Now move X to our target position
Code “G0 X #1234”

See also:
GetVar()

https://www.machsupport.com/wp-content/uploads/2013/02/Mach3_V3.x_Macro_Prog_Ref.pdf

314
General Mach Discussion / Re: Radius Mode/Diameter mode on Lathe
« on: August 04, 2021, 02:54:42 AM »
try to double step's/per in Motor Tuning page for X-axis.

315
General Mach Discussion / Re: Motor turning
« on: July 26, 2021, 10:55:04 AM »
this Problem is caused by your USB Controller, we had this a couple of weeks ago. there are controlers witch Support
two axis at a time and some others do not.

316
VB and the development of wizards / Re: string problem ""
« on: July 24, 2021, 07:36:19 AM »
try to use this:
Code: [Select]

namedesc = Mid(FileData,2,Len(fileData)-2)


317
General Mach Discussion / Re: 1 axis linear actuator
« on: July 23, 2021, 07:16:39 AM »

318
German / Re: Mach3 4.Achse stockt bei jedem Satz kurz
« on: July 16, 2021, 07:12:27 AM »
ich habe da mal ewig rumgespielt, da ich die C-Achse quasi als virtuelle Achse zur Leistungseinstellung für meinen
Laser benutze. Habe es aber letzt endlich nicht hinbekommen. Es ist nicht in allen Situationen so, aber es
"ruckelt" immer wieder.

319
German / Re: Mach3 4.Achse stockt bei jedem Satz kurz
« on: July 16, 2021, 04:46:09 AM »
wenn Du z.B. einen

G1 X100 Y50 Z-10 A90 fährst starten und stoppen dann alle Achsen gemeinsam?

ob das mit dem CV Mode in Mach4 richtig funktioniert, sobald eine A,B oder C Achse ins Spiel kommt,
kann ich nicht sagen, bei Mach3 jedenfalls nicht, da sieht das auch immer aus wie Einzelsatzbearbeitung.

320
German / Re: Mach3 4.Achse stockt bei jedem Satz kurz
« on: July 15, 2021, 11:57:53 AM »
am einfachsten kannst Du das mal mit ein paar Eingaben in der MDI Zeile testen.

z.B
alle Achsen nullen dann:

F800
G1 X100 A90
G1 X0 A0

hierbei sollte die X Achse und A Achse gleichzeitig starten, und auch wieder gleichzeitig stoppen