Hello Guest it is April 26, 2024, 03:10:10 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

1691
here: https://www.cnczone.com/forums/chinese-machines/287732-cnc-6040-6040z-china-made-cnc-routers-4.html

i found some Information about your Controller, but anyway you will Need a prallel to parallel cabel,
parallel to usb will not work i think.

this thread: http://www.machsupport.com/forum/index.php/topic,24497.0.html
seams to be very simular.

1692
that's what i found in the gali pluging Manual:


The Galil PlugIn is capable of using a probe for various probing
functions. This is accomplished using the Galil high speed position
latch functions. Unfortunately, the latch inputs share general purpose
inputs on the Galil ICM. Galil axes A, B, C, and D use inputs 1, 2, 3,
and 4 and Galil axes E, F, G, and H use inputs 9, 10, 11, and 12 for the
latch inputs.
IMPORTANT!!!! A probe should be wired to ALL latch inputs for any
moving axis on your machine! For example, if you have a 3 axis mill
and you are using Galil axes A, B, and C to drive them, then the probe’s
output should be wired to inputs 1, 2, and 3. This is because the G31
probe command will move in all 3 dimensions. If you have 3 axis mill
with a 4th axis rotary driven from Galil axes A, B, C, and D, then the
probe’s output should be wired to inputs 1, 2, 3, and 4.
When setting up Mach for probing, it is imperative that the “Probe”
signal is enabled in “Ports and Pin” on the “Input Signals” tab and the
port and pin should be mapped to one of the Galil latch input pins. For
example, if your 3 axis mill uses Galil axes A, B, and C to drive Mach
axes X, Y, and Z, then the probe’s output signal should be wired to Galil
inputs 1, 2, and 3 and the Mach Probe signal should be enabled and
mapped to port 1, and one of pins 25, 26, or 27. Which pin is mapped
really does not matter since all of the inputs will be active upon a probe
hit.

1693
you have to set in ports&pins->Inputs the Probe to the port and pin your probe is wired to.
than check in dignostic Screen for the digtize ledto go on, when yur probe is hit.

1694
CS-Lab / Re: GetPortByte with CSMIO
« on: May 21, 2018, 09:08:08 AM »
have you tryed:

value = GetInput(XX)

1695
CS-Lab / Re: Problems wit G31/M31 and subs
« on: May 16, 2018, 05:20:33 AM »
i allways declare my Global var's so for Example:

Global X_SENS as Double
Global Y_SENS as Double
Global Z_SENS as Double


1696
CS-Lab / Re: Problems wit G31/M31 and subs
« on: May 15, 2018, 08:36:08 AM »
both of them are using the same uservars for the probing result:

   X_SENS = GetVar(2000)   
   Y_SENS = GetVar(2001)   
   Z_SENS = GetVar(2002)   

1697
CS-Lab / Re: Problems wit G31/M31 and subs
« on: May 15, 2018, 05:54:16 AM »
Code: [Select]
Dim CurrentFeed As Double
Dim CurrentAbsInc, CurrentGmode As Boolean

Sub Main()

CurrentFeed     = GetOemDRO(818) 'Get the current feedrate to return to later
CurrentAbsInc  = GetOemLED(48) 'Get the current G90/G91 state
CurrentGmode = GetOemDRO(819) 'Get the current G0/G1 state


code "G90"
code "F100"


ReturnG90G91State 'subroutine'


End Sub

Sub ReturnG90G91State()
If CurrentAbsInc = True Then 'if G91 was in effect before then return to it
Code "G90"
Else
Code "G91"
End If
If CurrentGMode = 0 Then 'if G0 was in effect before then return to it
Code "G0"
Else
Code "G1"
End If
Code "F" &CurrentFeed 'restore starting feed rate
End Sub     




1698
General Mach Discussion / Re: "Goto Zero" getting Soft Limits Error
« on: May 11, 2018, 11:33:44 AM »
Soft limits act like limit switches the only difference is, that they are defined in software (Mach3) and don’t need actual switches. It is recommended that you have homing switches properly setup before you configure the soft limits. The soft limits will only work if the machine is properly initialized (homing procedure is completed) and limits are defined.

Homing and Zeroing is a big differnce.

1699
General Mach Discussion / Re: MACH3 spindle behaviour
« on: May 10, 2018, 02:26:47 PM »
hapy to hear, that you get it solved :D

1700
General Mach Discussion / Re: Plasma Z floating head
« on: May 10, 2018, 03:07:19 AM »
but no matter witch road you are trying to go (G28/G31/M03),
your Hardware has to work first.

means Limit Switch has to be set as refZ or probe, and has to work.

if M3 script sould handle this, it also has to use one of this two methodes.

if you have for the example the G31 working, i think it should be no Problem to Setup
your sheetcam to generate the right code, it is only GCode, witch is not Mach3/Mach4
specific.