Hello Guest it is May 06, 2024, 04:09: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

1201
Hi,
i think the fastest you can get in Mach3 is brain in combination with a parallel port.

you can do a simple test.
download/install Mach3
assign Outpu1 to a pp pin
write a small brain, witch inverts the Output every cycle
take a oszilloscope and measure the frequency

than you will see the fastest possible reaction

1202
General Mach Discussion / Re: Newbie with a few questions
« on: June 29, 2019, 04:14:56 AM »
a very simple and cheap cam Software is EstlCam, you can have a look there is a free trail avaliable at https://www.estlcam.de/.

1203
Hi had a quick look to the Langmuir Homepage.
Looks like you have ordered bündle (table + cutter) from them.
they are still selling this combination.

have you talked to them, about this Problem ?
i am pretty sure ist is a earth/grounding Problem, because if it is a Controller Problem,
they would not sell this combination any more.

basicly USB and Plasma cutting is not the best combination, Ethernet would be better,
but if the layout/wiring/groundig is ok, you should get it to work.

1204
if you want to go the "VB script" road, you have to remember that there is only one Task (script) witch is running continious
(macropump). and this macro has a 10ms timestamp (theoreticly).
Brains are a lot faster but  there Comes the external Controller into the Focus.
i never had something else than CSLab Controllers, but with them the update of Inputs takes 10ms as well.

1205
General Mach Discussion / Re: UC300
« on: June 27, 2019, 02:38:42 PM »
not realy sure what you concret looking for.

but after reading all this i woul also  give CSMIO-M give a try.

1206
General Mach Discussion / Re: Newbie with a few questions
« on: June 27, 2019, 02:35:36 PM »
I also purchased the system set-up to use Mach3 USB Controller


USB Controller makes me a Little "nervious",
the rest Looks ok.

1207
General Mach Discussion / Re: Linear cutting guidance
« on: June 27, 2019, 02:30:34 PM »
ok i think we are talking about soemthing like this:

https://www.youtube.com/watch?v=dHXoMG2s5yE

maybe i was not able t catch the entire Problem depending on my bad Bavarian english.

just to make sure we are talking about the same Thing.

1208
Mach3 and G-Rex / Re: shape doesnt come out exactly as designed
« on: June 26, 2019, 05:20:28 AM »
Looks like backslash in X/Y axis

1209
sorry my fault, not tested

Code: [Select]
Open "C:\Mach3\Lasterrors.txt" For Input As #2 ' Open to read file.
Do While Not EOF(2)
Line Input #2, FileData ' Read a line of data.
LineN_1 = LineN
LineN = FileData
Loop
Close #2
SetUserLabel(151,LineN_1)
SetUserLabel(150,LineN) 

1210
this should work without filckering

Code: [Select]
Open "C:\Mach3\Lasterrors.txt" For Input As #2 ' Open to read file.
Do While Not EOF(2)
Line Input #2, FileData ' Read a line of data.
LineN_1 = GetUserlabel(150)
LineN = FileData
Loop
Close #2
SetUserLabel(151,LineN_1)
SetUserLabel(150,LineN)