Hello Guest it is April 26, 2024, 12:32:36 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

1561
pls create a new 'New Topic' in 'General Mach Discussion' section,
and post your G-Code.

1562
if you just have a look where this New Forum Thread is placed:

Mach4 General Discussion -> New Forum!

you can think about, where the road is going too.

--> keep this Mach3 users out!

i am realy sad that all this mach3 knowledge will got lost, because a Forum without working search
function is just ridiculous.

1563
VB and the development of wizards / Re: Macro for Rotary Tool Changer
« on: December 11, 2018, 01:32:33 PM »

Lag on CSMIO/Mach3 inputs doesn't allow me to stop the ATC on the cam signal (genevasensor).

made a Suggestion in the other thread

The max current from the cam sensor doesn't allow to drive typical relay directly, so can't use your idea from another thread

cam sensor -> optocoupler -> relay

So, I made a workaround, I'm switching the motor off after 160ms (CW) and 150ms (CCW) after the right tool has been detected.
After that only checking the cam signal.


you sayed it, it is a Workaround but not a solution. see cam sensor -> optocoupler -> relay -> there is allways a solution


This works for 99% of the time, I've added retry if that's not the case, but if something goes really wrong it will end up in an infinite loop.
I'll come back to the ATC later.


Workaround -> solution Problem again


 

1564
hi,
your screenshot (machine) says everything what is wrong.

you are not trying to get the z-axis down, you are traying to do a probe
with radius comp (G41/G42) on.

G41/G42 + Mach3 is a no go (bugs) IMHO

1565
General Mach Discussion / Re: Mach3 Digitizer
« on: December 11, 2018, 08:45:14 AM »
attached a Version where all Parameters are shifted to an other aeria, may it helps.
just unzip it into addon Folder.

1566
General Mach Discussion / Re: Mach3 Digitizer
« on: December 10, 2018, 11:43:58 AM »
i have tryed the "Standard" witch came with Mach3 Digit wizard

you have to type in a value and press enter, that's it

1567
FAQs / Re: Driver Question mark
« on: December 10, 2018, 10:43:47 AM »
i realy dont know, but you can give it atry.

1568
VB and the development of wizards / Re: Macro for Rotary Tool Changer
« on: December 10, 2018, 12:14:46 AM »
so waht are the "rest" Problems?

1569
General Mach Discussion / Re: Mach3 Digitizer
« on: December 10, 2018, 12:13:24 AM »
there are digitice wizards avaliable, have a look to the installed wizards.

1570
VB and the development of wizards / Re: Macro for Rotary Tool Changer
« on: December 09, 2018, 04:28:02 AM »
ok i think the Problem is that the Inputs are not updated synchron.

try this code:

Code: [Select]
ToolRdy = false
While(Not ToolRdy)
If GetCsmioIn(BCD1) or GetCsmioIn(BCD2) or GetCsmioIn(BCD4) or GetCsmioIn(BCD8) then
'give the inputs a chance to update
Sleep(150)

'then read the BCD code
ActATCPos = 0
If GetCsmioIn(BCD1) Then
ActATCPos = ActATCPos + 1
End If
If GetCsmioIn(BCD2) Then
ActATCPos = ActATCPos + 2
End If
If GetCsmioIn(BCD4) Then
ActATCPos = ActATCPos + 4
End If
If GetCsmioIn(BCD8) Then
ActATCPos = ActATCPos + 8
End If

If (ActATCPos = (ToolSlot - 1)) Then
ToolRdy = true
End If
End If
Wend