Hello Guest it is March 19, 2024, 01:52:02 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

71
General Mach Discussion / Re: CNC Calibration: Circles Not Round
« on: September 11, 2023, 02:05:38 AM »
also make sure in Config -> General Config - Motion Mode -Exact Stop is selected

to measure backslash:

-jog axis tooward gauge
-zero gauge
-zero axis DRO
-now switch to handwheel mode single step and a small jog step (0,1 or 0,01)
-now jog axis away from gauge in single step's and watch gauge
-when gauge starts to move read your axis DRO to see your backslash

72
G-Code, CAD, and CAM discussions / Re: doesnt mill the correct size
« on: August 31, 2023, 01:42:03 AM »
so, same coordinates but different speeds:

-loose or slipping like Graham mentoined
-loosing step's - devide your speed and acelleration in motortuning by 2
-G61/G64 setting - try to use G61

73
your SetCurrentTool(NewTool) is at the wrong place:

origin:
Code: [Select]
...
...
      SetCurrentTool(NewTool) 'Set the new tool to current
    End If
End Sub                   

should be:
Code: [Select]
...
...
    End If
    SetCurrentTool(NewTool) 'Set the new tool to current
End Sub                   

if still not working try:
Code: [Select]
...
...
    End If
    SetCurrentTool(NewTool) 'Set the new tool to current
    Code "G43H" & NewTool
End Sub                   

74
German / Re: Spindel dreht sich nicht.
« on: July 26, 2023, 11:50:56 AM »
So, ich habe jetzt einen schnellen Blick in das chinesen wirrwarr Handbuch geschmissen.

FWD+ und FWD- sind nicht Spindel CW und CCW . FWD+ ist Spindel CW und FWD- der GND dazu.
Für Spindel CCW must Du einen der anderen Ausgänge benutzen.

Normalerweise konfigurierst Du in Config -> Ports and Pins -> Spindle Setup -> Relay Control
die beiden Ausgangsnummern die für Spindel CW und CCW zuständig sind.

Dann in Config -> Ports and Pins -> Output Signal bei den beiden Ausgängen von oben die entsprechende
Port und Pinnummer eintragen, dann sollte das gehen. Mit Enable 1 und 2 hat das normalerweise nichts
zu tun, aber wer weis bei dem Chinesen Krempel.

In ihrer Beschreibung habe die die Outputnummern 1 und 2 benutzt, dann aber bei Ports und Pins
Port 2 und beide Male Pin 16 dann kann sich die Spindel immer nur in einer Richtung drehen.

75
German / Re: Spindel dreht sich nicht.
« on: July 26, 2023, 09:27:46 AM »
Servus,
da bräuchten wir genauere Info über die Verdrahtung zwischen Steuerung und FU,
um da Tips zu geben.

Gruß Tom

76
when i look to your wiring diagram i expect that  whatever OUTPUT (T1-T4) will be enabled
it will allways enegice all relay's (K1,K3,K4,K5,K6).
the minimum is to put diodes into each OUTPUT line (T1-T4) in front of K1.

77
the simpies way to set the feedrate is:

Code: [Select]
Code "G1 F" & GetOEMDRO(1203)

or just
Code: [Select]
Code "F" & GetOEMDRO(1203)

78
first of all you have to get clear with your hardwaresignal's.

make a list what you have. for example:

OUTPUT1 'turn ATC CW
OUTPUT2 'turn ATC CCW

INPUT1 'ATC in position tool 1
INPUT2 'ATC in position tool 2
INPUT3 'ATC in position tool 3
INPUT4 'ATC in position tool 4
OEMTRIGGER1 'ATC locked

after all signal's are clear defined, get those connected and tested.
and after that we will have a look for the code. 
 

79
i have tested this code in VBScripter window:

Code: [Select]
SetOEMDro(1207,5000)

msgbox GetOemDro(1207)

ActivateSignal(OUTPUT8)

Sleep(GetOEMDRO(1207))
   
MsgBox "After"

and it works like expected

80
i got some information years ago from Wojtek (CSLAB) and som others you can find in their example script's.