Hello Guest it is March 19, 2024, 04:56:13 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

21
German / Re: Mach3 mit Pokeys mit Potie für S Overr / F Overr
« on: January 05, 2024, 12:23:48 PM »
da bin ich jetzt auch überfragt, wie gesagt ich kenne die Pokeys55U selber nicht.
Da muß ich mich auch erst Mal durch das Handbuch pflügen.

Gruß Tom

22
German / Re: Mach3 mit Pokeys mit Potie für S Overr / F Overr
« on: January 05, 2024, 07:09:12 AM »
denke Mal, Du must diese Analog Joystick Spalte auf not used stellen.

23
German / Re: Mach3 mit Pokeys mit Potie für S Overr / F Overr
« on: January 05, 2024, 06:59:07 AM »
corrected value 150 sollte passen.
In Mach3 brauchst Du normalerweise sonst nichts mehr einstellen.

24
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

25
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

26
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

27
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)

28
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)



29
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

30
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.