Hello Guest it is April 19, 2024, 11:35:48 PM

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

421
try to use machscreen.

https://kd-dietz.com/download/MachScreenV1.72a.exe

never had a Problem like this

423
what screeneditor did you use to make the changes?
and the modified file set is still ...lset ?

424
General Mach Discussion / Re: Mach3 wont reference all home
« on: April 04, 2021, 03:46:45 AM »
have you worked through Homing algorithm configuration like described in Manual?

425
is this what you are looking for to invert sign:

Code: [Select]
Xdro = GetOEMDRO (800)  'Get X DRO current working offset
Ydro = GetOEMDRO (801)  'Get Y DRO current working offset
Zdro = GetOEMDRO (802)  'Get Z DRO current working offset
SetUserDRO (1100, Xdro * -1.0)
SetUserDRO (1101, Ydro * -1.0)
SetUserDRO (1102, Zdro * -1.0)

426
General Mach Discussion / Re: Mach 3 rapid clearance question
« on: April 03, 2021, 11:37:04 AM »
maybe THC is enabled?

427
General Mach Discussion / Re: Violentlt fast "to home movement".
« on: April 03, 2021, 11:27:58 AM »
i would suspect metric and imperial Units mixed up.

428
in the work Offset table are no  G52 values, only G54 ...

G52 values are only avaliable in Vars (5211 ...)

so what is the problem to have these offset's stored in UserDro's like you did?
and why are you trying to store G52 offset's in work offset table?
for the moment i can't catch the entire Problem.

429
this will read G52 (X/Y/Z) and write G54

Code: [Select]
X=GetVar(5211)
Y=GetVar(5212)
Z=GetVar(5213)

SetVar(5221,X)
SetVar(5222,Y)
SetVar(5223,Z)


430
for the moment i am sure what you realy try to do.

now you are talking of the tool table?

to store values in the tooltable in lathe mode the following will store X/Z

Code: [Select]

SetToolParam(ToolNo,3,XOffset) 'write X
SetToolParam(ToolNo,4,YOffset) 'write Y
DoOEMButton(316) 'save tooltable


but there is nothing for Y to store.

you can use one of the wear values