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

1421
G-Code, CAD, and CAM discussions / G43T Mach3
« on: January 31, 2019, 12:13:43 PM »
Hi,

has anybody a document witch describes, or maybe knows what a

G43T+toolnumber

exactly does in Mach3.

1422
FAQs / Re: Mach3 Longarm Quilting Machine
« on: January 30, 2019, 02:02:55 PM »
Thank you for your reply.  Im not sure how to do all of this?

About number 2.  say maybe you have a square but its not 100% square can you maybe plot the 4 corners and insert your design into that

 

as sayed for 1. and 3. it will be easy to Switch an Output/relay on your breakout board (type??),
but how you can inplemet this on your quilting machine ??

1423
G-Code, CAD, and CAM discussions / Re: G0 strange movement
« on: January 30, 2019, 01:42:23 PM »
So,
after hours of fiddeling and testing, i found the Problem.

my TC macro (M6Start) was based on an example from CSMIO.

at the end of the macro was the following code to anunce the new tool to the System:

Code: [Select]
  SetCurrentTool( newtool )
  Code("G43T" & newtool)
  Code("G43H" & newtool)

i never thought about it >:D

but the G43T.. caused the Problem.

so i started to get informations what G43T.. exactly does (or should do),
without any success. :'(

so it is running now without this G43T..,and without knowing what is should do.
i can live with this.

TPS
 
 


1424
FAQs / Re: Mach3 Longarm Quilting Machine
« on: January 30, 2019, 01:28:12 PM »
1.  A command or button to have a needle up/down function

that can be done via a button script or a macro call like M8(cooling on) would be an exaple to Switch an Output

2.  A screen set where you can map your work area and fit your design into that area irrespective of the shape

here i am not realy sure what you exactly mean (may depend on my bad bavarian english)

3.  A command or button to do like a lock stitch before your start sewing so that it will lock in the thread


same as 1. maybe Mist On function can be used for that

4.  Can you sync the sewing machine motor (AC) that the motor goes slower and faster as the X&Y moves(or does someone maybe
     know how to  make a easy stitch regulator where you can indicate how many stitches you wont per inc.

dont know your breakout board, maybe o analog Output (witch is a mirror of the actual feedrate) can do this

so we Need some more informations about your Hardware.

TPS

1425
G-Code, CAD, and CAM discussions / G0 strange movement
« on: January 29, 2019, 11:18:30 AM »
Hi i have a simple Programm:

running on Mach3
tested in R3.043.022
and in R3.043.066

Code: [Select]
N1 ( Lochreihe mit: 2 Loecher)
N2 ( Zentrierbohren mit Werkzeug: 99 )
N3 ( Bohren mit Werkzeug: 114 )
N4 G00 G49 G40 G21 G17 G80 G50 G90
N5 ( Zenrierbohren ----------)
N6 M06 T99
N7 G90 G00 X5 Y10
N8 G00 Z5
N9 S3800
N10 M03
N11 M08
N12 G73 X5 Y10 Z-3 Q1 R5 F300
N13 G91 X7.0711 Y7.0711 L1
N14 G80
N15 G90
N16 G00 Z5
N17 M09
N18 M05
N19 ( Bohren ----------)
N20 M06 T114
N21 G90 G00 X5 Y10
N22 G00 Z5
N23 S1100
N24 M03
N25 M08
N26 G73 X5 Y10 Z-20 Q1 R5 F230
N27 G91 X7.0711 Y7.0711 L1
N28 G80
N29 G90
N30 G00 Z5
N31 M09
N32 M05
N33 M06 T0
N34 M30

if i run the line:

N7 G90 G00 X5 Y10

i get a random z-axis movement

at line:

N21 G90 G00 X5 Y10

witch is exactly the same i have no z-axis movement

if i Switch the lines:

N7 G90 G00 X5 Y10
N8 G00 Z5

to

N7 G90 G00 Z5
N8 G00 X5 Y10

everthing works like expected.

i have no real idea who or what initiates this z-axis monent.

TPS





1426
General Mach Discussion / Re: Tool change position
« on: January 28, 2019, 01:49:24 PM »
tool Change depends:

first on you setting's in Config -> General Config -> Tool Change

-ignore tool Change
   is selv explaining

-stop spindle wait for start
  will first call M6Start macro after pressing Start M6Stop macro

-Auto tool changer
 will only call te M6Start macro

and sencond on he code witch is in your M6Start/M6Stop macro's

1427
VB and the development of wizards / Re: how to edit a wizard
« on: January 28, 2019, 09:09:18 AM »
use a screendesigner (like Machscreen), then you can eddit a wizard like a normal screenset.

1428
General Mach Discussion / Re: home switch configuration
« on: January 25, 2019, 08:02:12 AM »
sorry i was on the wrong Train.
i was talking about Endstops, but we at the home Switches.

ok the in diagnostic page the M?Home led'should Show up.

you can jog over These Switches it is no Problem, home Switches will only act if
you do a Referencing of this axis.

1429
General Mach Discussion / Re: home switch configuration
« on: January 25, 2019, 06:53:12 AM »
you can see in diagnosic page the M1++ and M1-- led's changing?
if you only have one limitswitch you have to set Limit++ and Limit-- to the same port/pin.

in Settings page "Override Limits" is off?

1430
Share Your GCode / Re: Wait for signal
« on: January 24, 2019, 02:03:43 PM »
Gcode as used by mach3 or Mach4Hobby does not include conditional statements. with Cypress Enable.
Craig

i am not familar with Mach4 (LUA Scripting),

but i am pretty sure that the is (Mach4Hobby), a posibility to create a macro call M123 or what ever,
witch is waiting for a stupit Input to get "High".