Hello Guest it is April 27, 2024, 01:42:42 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

2461
Hi,
I have problem with wireing this up. There is no Enable joints (just DIR and STEP)unlike my stepper motor driver. I read manual but I didn't find explanation why is that. Could soneone tell me how to make it work.
yes, yust figure it out.

2462
Hi Guys,

as long we dont know, what picoworm is trying to do,
it's only a look into the "cristal ball".
my "cristal ball" is out of order, because the lamp is
broken, and nobody is around to change the lamp.

Regards Thomas

2463
Hi,

DoButton(3)

here: http://www.machsupport.com/Mach3Wiki/index.php?title=Main_Page
is a documentation.

Regards Thomas

2464
G-Code, CAD, and CAM discussions / Re: Cut Arc Problem
« on: October 23, 2014, 04:14:22 PM »
Hello,

where is the problem off the metric system (the one and only),
be happy that your machine is metric.

Thomas

2465
General Mach Discussion / Re: Problem zeroing all axis.
« on: October 22, 2014, 03:18:43 AM »
Hello,

the answer is displayed in your status lin on the botom of the screen.

the limit switch for home Y axis is allready triggered.

possibility 1: make it free by moving in manual
possibilty 2. config -> general config -> disable home sw. safety

Thomas

2466
G-Code, CAD, and CAM discussions / Re: GetVar(2002)
« on: October 21, 2014, 09:49:36 AM »
You usually don't need to convert to a string to put something in a messagebox.

you are right with the example above.

but only in this case:
Test = 1234.5
MsgBox Test

not in this case:
Test = 1234.5
MsgBox "Test = " + CStr(Test)

Thomas


2467
General Mach Discussion / Re: Issues with pausing and resuming
« on: October 21, 2014, 09:40:14 AM »
An Arduino and grbl is not in the same league as Mach3 and the others I mentioned. Not even close.

Gerry you are a 100% right, but
striplar was only asking: "All I need is for it to execute G1 F# S# and M03, that's all I use"

that was the trigger for grbl and Arduino.

Thomas

2468
G-Code, CAD, and CAM discussions / Re: GetVar(2002)
« on: October 21, 2014, 05:54:25 AM »
Hi,

cstr converts numbers to string, because msgbox can only display string.
look here: http://www.machsupport.com/help-learning/product-manuals/

for vb script manuals

2469
General Mach Discussion / Re: Issues with pausing and resuming
« on: October 21, 2014, 03:17:38 AM »
Quote
There's a big gap in the market for someone to produce a nice simple Windows based system without all the junk and clutter of the Mach3 bloatware.
Planet CNC and Eding CNC

grbl arduino

2470
G-Code, CAD, and CAM discussions / Re: GetVar(2002)
« on: October 21, 2014, 02:59:22 AM »
hope you are putting the value into MSGbox like this:

MsgBox cstr(ZProbePos)

should work. i do it in the same way.

regards Thomas