Hello Guest it is April 18, 2024, 10:20:29 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
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/.

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

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

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

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

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

1207
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

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

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




1210
don't know a possibility to Show more than one line in Standard errorlabel.

but you can run a small code in macropump and Show Messages N and N-1 in two userlabels

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.
SetUserLabel(151,GetUserlabel(150)) ' save message N-1 to userlabel151
SetUserLabel(150,FileData)                ' save message N   to userlabel150
Loop
Close #2