Hello Guest it is April 25, 2024, 01:02:57 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

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

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



33
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

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

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

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

37
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

38
VB and the development of wizards / Re: JogOn and JogOff in Macros
« on: December 01, 2023, 05:43:24 AM »
so what are you realy trying to do? maybe there is an other way for it.

39
General Mach Discussion / Re: G28.1 plasma touch off issue
« on: December 01, 2023, 01:52:54 AM »
Config -> General Config -> upper right corner -> Debounce Interval

40
General Mach Discussion / Re: Tool lenght sensor error
« on: December 01, 2023, 01:50:29 AM »
check your settings for probe input and check function in diagnostic screen first.