Hello Guest it is May 07, 2024, 06:53:33 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

371
German / Re: Mach 3 Handrad
« on: May 20, 2021, 06:13:50 AM »
OK, dein Not Aus Signal (Ports&Pins -> Input Signals) ist auf den gleichen Port und Pin (1,13) gelegt wie das Handrad
(Ports&Pins -> Encoder/MPG's MPG1) gelegt, darum geht die Maschine auf Not-Aus wenn Du am Handrad drehst.

Leider kann man keinen Hersteller Deiner Platine erkennen. Gibt es dazu irgend eine Doku?

Gruß Tom

372
Mach4 General Discussion / Re: independent z axis.
« on: May 20, 2021, 04:55:02 AM »
here:
https://www.machsupport.com/forum/index.php?topic=33866.0

is some Information about maping unmapping Motors.

and the Offset for the three "Tools" can be done with G52

373
The jog buttons are now relative to tool movement, not table movement. Is that something I'll have to get use to or is it normal to set the jog buttons up for table movement?
Thanks again for the advice.

That is like a Switch in the head, to understand that you want to move the tool on the material and not the table. :)

374
have a quick look to the Manual:

https://www.machsupport.com/wp-content/uploads/2013/02/Mach3Mill_1.84.pdf

chapter 7.1 to see how the coordinate System is, but remember, directions are allways
tool related to material.

X+ tool moves right (table left)
Y+ tool moves backwards (table to the front)

375
in your sample code:

Code: [Select]
N10
N11 M6 T1
N15
N20 G0 Y100
N35 G0 X100
N40 M3
N50 M811
N55 G1 Z+60 F500
N66 Z100
N77 M911
N78
N88
N89 M6 T3
N90 M3
N91 M813
N93 G1 Z+60 F500
N96 Z+100
N97 M913
N98 M5
N99 G92.1
N100 G1 X-340.0 Y-40 Z100 F3500
N200 M30

you what to do two drill's at X100 Y100 first with tool1 second with tool3.
the coordinate offset for the Tools is done in M6.

therefore you must do a new move with X and Y after you call M6 for tool3.

Code: [Select]
N10
N11 M6 T1
N15
N20 G0 Y100
N35 G0 X100
N40 M3
N50 M811
N55 G1 Z+60 F500
N66 Z100
N77 M911
N78
N88
N89 M6 T3
N90
N91 G0 Y100
N92 G0 X100
N93
N94 M3
N95 M813
N96 G1 Z+60 F500
N97 Z+100
N98 M913
N99 M5
N100 G92.1
N101 G1 X-340.0 Y-40 Z100 F3500
N200 M30

376
Looks like your x-axis is reversed

Config -> Ports&Pins -> Motor Output's -> X-Axis -> Dir Low Active

377
German / Re: Mach 3 Handrad
« on: May 17, 2021, 01:14:50 AM »
Hallo,
ohne etwas Informationen über Seine Verdrahtung und Konfiguration, ist es schwierig hier zu helfen.

Gruß Tom

378
German / Re: Mach4 Drehen eCAM
« on: May 16, 2021, 06:17:09 AM »
Ich habe keine funktionierenden PP, ja das liegt an dem Werkzeugwechsel Code

G0 T101101

ich würde mal versuchen im PP die folgende Zeile anzupassen:

<Template_InitOperation_With_Toolchange>{EMPTY_LINE} {LINE_N} {ORIGIN} ({OP_DESC}) {COOLANT_CODE} {FEED_MODE}G18 G48S{REV_LIMIT_VALUE} ({TOOL_LABEL}) G0T{TOOL_POS}{TOOL_COR} {SPEED_MODE}S{SPEED_VALUE}{SPINDLE_ORIENTATION}</Template_InitOperation_With_Toolchange>

speziell diesen Teil:

G0T{TOOL_POS}{TOOL_COR} {SPEED_MODE}

würde ich Mal so probieren:

G0T{TOOL_POS}


379
General Mach Discussion / Re: Mach 3: Programmatic change to config
« on: May 14, 2021, 11:27:53 AM »
IMHO a lot of People do rigid tapping with 1 pulse/rev, i never tryed because my CSLab controller's do tapping only with
Encoder module. try and error will e the only way to figure out.

380
General Mach Discussion / Re: Mach 3: Programmatic change to config
« on: May 14, 2021, 10:34:49 AM »
if you what to use tapping cycle (G84) you must have a spindle index Signal, does not matter wether spindle
in in Step/dir or analog mode.