Hello Guest it is May 07, 2024, 02:11:39 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

31
German / Re: Mach3 mit Pokeys mit Potie für S Overr / F Overr
« on: January 05, 2024, 04:50:17 AM »
Servus,
ohne das Pokeys zu kennen denke ich das in die Spalte Gain ein Wert grösser 0 gehört,
das in der Spalte corrected value auch was raus kommt.

DRO821 für F ist ok.
für S sollte es DRO74 sein.

Gruß Tom

32
Mach3 under Vista / Re: Mach 3 Mill no GoTo Zero
« on: January 03, 2024, 03:27:52 AM »
try to reduce velocity and acceleration in Motor Tuning

33
German / Re: kein Rechteck-Ausgangssignal
« on: December 27, 2023, 06:59:38 AM »
Das Problem ist, das Du den Step Impuls bei Mach3 im LPT Betrieb nicht länger als 5yS stellen kannst
(Motor tuning).

Gruß Tom

34
VB and the development of wizards / Re: DRO reading
« on: December 04, 2023, 01:05:01 PM »
we had the sam thing a while ago.
Code: [Select]
Message "X = " & nFmt(GetOemDRO(800),3)

35
Machscreen Screen Designer / Re: Chainsaw mill project with mach 3
« on: December 03, 2023, 03:49:05 AM »
Code: [Select]

'turn ON UserLed
SetUserLed(1500,1)

'turn OFF UserLed
SetUserLed(1500,0)

'toogle UserLed
If GetUserLed(1500) Then
 SetUserLed(1500,0)
Else
 SetUserLed(1500,1)
End If

an example  for waiting until Limitswitch is ON would be
Code: [Select]

'turn UserLed ON
SetUserLed(1500,1)

'Wait for Limit Switch
While GetUserLed(1600) = False
 Sleep(10)
Wend

'turn UserLed OFF
SetUserLed(1500,0)



36
VB and the development of wizards / Re: JogOn and JogOff in Macros
« on: December 02, 2023, 07:27:01 AM »
here is a brain where i played arround a bit

37
VB and the development of wizards / Re: JogOn and JogOff in Macros
« on: December 02, 2023, 07:13:26 AM »
here:

https://www.cnczone.com/forums/attachments/5/2/5/2/6/61017.attach

i found some time ago a document for OEM Buttons

352-355 do other axis combination's but never found something for X&Y or Z&A sorry.

maybe you can do a brain witch jog's two axis via a UserLED you can write, never tryed it.

38
Machscreen Screen Designer / Re: Chainsaw mill project with mach 3
« on: December 02, 2023, 03:13:30 AM »
if you make your brain you can create an easy screen with
all UserLed's and Dro's and some buttons to toggle the UserLed's
for an simple test.

39
VB and the development of wizards / Re: JogOn and JogOff in Macros
« on: December 01, 2023, 09:02:11 AM »
great!

with OEMDro(3) you should be able to set the slow jog speed in %, i think.

40
VB and the development of wizards / Re: JogOn and JogOff in Macros
« on: December 01, 2023, 06:40:55 AM »
what is the interface between your vision system and Mach3?

why cant you send G1 to the expected position?

if you want to do small steps, like jog in step mode
you can send a "G91 G1 X1 F10" for example