Hello Guest it is April 20, 2024, 01:35:40 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

1031
General Mach Discussion / Re: Tool table T word
« on: February 18, 2020, 01:36:28 AM »
T0127 means
tool is in turret place 1
Offset is used from tool number 27 in tool table

T0227 means
tool is in turret place 2
Offset is used from tool number 27 in tool table

T0601 means
tool is in turret place 6
Offset is used from tool number 1 in tool table

and so on...

TXXYY
the XX part is used to know where to rotate the turret
the YY part is used to know the Offset data
because noramly you will have more the 8 Tools bus only 8 places in turret.


1032
---Shouldn't the M3home go out if I disconnected the sensor altogether?

this is depending on your wiring and on the configuration of the Inputs.
maybe a lose/broken is your Problem, but knowing nothing about your
wiring/confiuration makes it hard to help.

1033
General Mach Discussion / Re: CNC Router servo drive failiure
« on: February 17, 2020, 01:59:37 AM »
without any knowledge about your wiring it is very hard to help, but there should be a enable Input on the Motor Driver.
you will have to follow the wiring of this Input witch is probably switched by a relay for all three Drivers.

1034
General Mach Discussion / Re: vibrating z motor
« on: February 17, 2020, 01:49:22 AM »
i have realy no idea, what your Problem is, but maybe this patched Version:

https://www.machsupport.com/wp-content/uploads/2013/04/Mach3Version3.043.exe

helps.

1035
General Mach Discussion / Re: Synchronized I/Os over Modbus (?)
« on: February 14, 2020, 01:53:55 AM »
just a thought, maybe i am thinking to easy.
why not turning the nozzles on/off by customized M call's

for example:

G1 X10 F100
M200 'turn nozzle 1 ON
G1 X20
M201 'turn nozzle 1 OFF



1036
General Mach Discussion / Re: Arc Ok signal always on
« on: February 13, 2020, 01:25:07 PM »
maybe a wiring Problem?

1037
General Mach Discussion / Re: Need a new screen for Mach3
« on: February 10, 2020, 02:46:35 PM »
nothing to do with the .png file.
just go to Config (main menue) -> General Config and make the setings like sugested

1038
General Mach Discussion / Re: Need a new screen for Mach3
« on: February 09, 2020, 01:26:21 PM »
if you use attached Settings, it does not look so bad here (1920x1000 21" wide Screen)

1039
Mach3 under Vista / Re: Mach3 Jog buttons not working when ran as script
« on: February 09, 2020, 01:14:58 PM »
IMHO you will not be able to do a XY jog via a Screen button (i do not know a way, but maybe there is a way).
i have attached a smallĀ“brain for a XY plus jog via Trigger of input1.

-copy it to your C:\mach3\brain Folder
-use Operator -> Brain control and enable the brain
-goto Config -> ports&pins -> Input Signals -> enable Input1 ->enable emulated -> assign a hotkey

and you will see, you can jog X/Y via the assigned hotkey

1040
Mach3 under Vista / Re: Mach3 Jog buttons not working when ran as script
« on: February 09, 2020, 07:47:57 AM »
normaly DoOEMButton(307) DoOEMButton(309) should be excecuted and start the axis to jog.
make sure JogMode is on.

the Problem will be that a DoOEMButton(307) will start JogX-movement and a DoOEMButton(334) has to stop JogX.

a normal Screen button will only run the when the button is pressed and you have no controll when the button is released.

you can test your macro code in Operator -> VB Script Editor window and use the >|| button to test code line by line.