Hello Guest it is April 24, 2024, 01:52:41 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

691
hi,
if i run your test here with all axis in Zero it takes about 21s.

692
FAQs / Re: Mach3 - Physical Limits and Homing
« on: December 09, 2020, 07:22:33 AM »

693
General Mach Discussion / Re: Mach3 custom macro with value question
« on: December 08, 2020, 05:26:07 AM »
RPM = Param1()

within the macro will read the value from P Parameter

if you call

Code: [Select]
M133 P2500

and in the macro:
Code: [Select]
RPM = Param1()

the RPM will be 2500

see:  www.machsupport.com/wp-content/uploads/2013/02/Mach3_V3.x_Macro_Prog_Ref.pdf

694
General Mach Discussion / Re: Mach3turn Stop button?
« on: December 08, 2020, 02:49:26 AM »
DoOemButton(1003)

695
if you stepper is tuned to 360 is 1 rev,
you know 1 Station shift is 45 geg

you know for example 3 station's to go postive

code will be:
Code: [Select]
Code "G91 G01 Y"& staionstogo*45 & " F100"
Code "G90"
While IsMoving()
Wend

for nagative:
code will be:
Code: [Select]
Code "G91 G01 Y-"& staionstogo*45 & " F100"
Code "G90"
While IsMoving()
Wend

696
you can set up your stepper (Motor tunnig step/per) that you get with a G91 Y360 Fxx one full rev.
the rest i simple calulation ?


ypu can use G-Gode commands in a macro as well:

Code: [Select]
Code "G91 G1 Y********* F*********"
is the same like in MDI or G-Code file

697
don't use all this jog stuf in the macro anyway, use incremantal moves.

a Code "G91 G1 Y(+- *********) F10" will do better Job like all this Manual jog and Stop things.

don't Forget to Switch Back with Code "G90"

698
General Mach Discussion / Re: Mach3turn Stop button?
« on: December 07, 2020, 03:34:13 PM »
ypo have to customize your stop button from a "normal" buttonpress to a custom macro, where you do the stopbutton and seperate DeActivate(output4).

699
hello Eric,

Config -> Ports&Pins -> Motor Outputs -> enable B-axis

Pins will not matter because this is handled by the plugin.

Regards Tom

700
hello Eric,
in the XML you sent B-Axis is not enabled?
if enabled do not forget the Motor Tuning

i would set 10 steps/per 10000 velocity and 10000 accel, to make sure
b-axis will not slow down the other axis.