Hello Guest it is April 20, 2024, 11:07:34 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 - deleteallusers

Pages: 1 2 »
1


Well, for such a simple question, I'm amazed that no one has responded.

That does not give me much confidence, that I will be able to be succussfull with the software.


2
Can’t I just hook up the NEG wire of the ESTOP to the tool head and hold the POS lead to the surface of the COPPER PCB material and move the tool down slow until it triggers an estop then just Backoff 0.0001 or so and zero the machine.

I know there are more elagent ways to do this but I’m having problems with the screen
Interface and I don’t have time to mess with it now! I just need a solution.

Is this not the same thing as a regular touch off switch (using estop insted of prob) ? I can't figure out how to use the probe input like this ?

So what difference does it make anyway ? I dont have time to learn a new programming method.

Thanks


3
General Mach Discussion / Touch Off Plate - DIY Depth Sensor ?
« on: June 20, 2007, 11:50:25 PM »
Hello,

I have a DIY CNC machine running mach3.
I’m new to mach3 and to CNC machines; I’m trying to mill a PCB.
I’m using a 0.015 stub end mill 2 flute

I’m having depth problems, I always cut to deep or two shallow.
I need to cut Z-0.0075  down from Z0 (Z0 = the end mill just touching the top
of the material).

My problem is that I’m breaking my end mills because I can’t set them correctly
down on the material. (I level my work area via 4 screws at the corners)

Should I build and use a touch off plate ? I don’t know what to use.

I’ve heard about some kind of spring loaded depth guard that presses on the material each plunge. Is there a web link, How do I ?

I’m also thinking about adding a DIY vacuum modification.

QUESTION:

Is there anything I can build that will provide realtime feedback of the current depth
so the program can make sure it’s always at Z–0.0075 ?

What other DIY solutions can I use ? I don’t want to spend $$$ on ready made solutions.

What about a pressure sensor ? That way I could do somthing like this ...
   
   if ( getEndMillPSI ( Spindle_POS ( Z ) ) >= dec_to_PSI ( 0.0020 ) )
     {
         set_drill_depth(Z-0.0075);
     }else{

         JOG ( Z, ( Spindle_POS ( Z ) - 0.0001 ) );
    }



HOW can I build a DIY pressure sensor ?

Thanks,



4
General Mach Discussion / How to add 1 to axis movment inline ?
« on: May 04, 2007, 05:17:21 PM »
I got a program SOMTHING like this (SEE BELOW)

I'm trying to route LEVEL my work area.

I must add 1 to Y position and move Y 1 position more each loop
I do ... g00 y[+#1]  (Where #1 = 1 each loop and adds to the current value of Y)

and it's an error on the line.

I got to use a variable in the line position that changes each time I call the routine.

How do I do it ?

Thanks.


--------------------------------------------------
M98 P1001 L11.9844

M30
O10001

M98 P1002 L1
M98 P1003 L1

g00 x0
M99
;-------------------------
O1002
g00 x-1  (only moving 1.0 units)
M99

;-------------------------
O1003
g00 y[+#1]     ; THIS IS AN ERROR HERE HOW DO I DO IT ?
M99


5
General Mach Discussion / New to G-Code, need HLC / tools
« on: May 04, 2007, 03:09:44 PM »

HLC - High Level Control (like a more flexable programming language)

I'm totaly new to G-Code, but I'm a programmer, I need to...

do somthing like this.

10 g00 X0
20 g00 x-11.9844

30 'and here's really what I need
40 g00 y=y+1
50 if y=11.9844 then goto HOME_IT
60 goto 10

:HOME_IT
g00 x0 y0 z0

********************************
It does not need to be exactly like the above code, I just need
a way to use variables, loops and functions.
It would be nice to be able to define constants, and/or macros also.

Like I said I'm totaly new to G-Code. Is there
a tool I can use to do this ? is it built in ?

Where is a tutoral, How do I do it ?

Thanks,

6
General Mach Discussion / Newbe - Calabration advise needed
« on: May 04, 2007, 10:40:23 AM »

Hi,

I’m very new to CNC machines and G-Code programming, I need some advise.
I have completed my first CNC machine. I’m using Mach3 with Xylotex 3-axis driver.

I’m trying to figure out coordinate systems so that I can create/use g-code programs to make parts and stuff (use my machine).

I’m confused about g-code programs and machine calibration in general.

QUESTION #1.

Is it required and normal to always calibrate the machine to the specific g-code program?

For example, I’m having trouble running the Roadrunner program; my machine is always going out of bounds. And I don’t know how to home my machine to the correct starting point so the program will run correctly.

Or is there a general calabration process that will solve all these problems ?
If so, where can I find a clear tutorial on how to do this ?

QUESTION #2

I have limit switches, it looks like some of the X-3.8999 stuff is always going to trigger my limit switches. What do I do. I’m confused.

I have reviewed the setup on my mach3 software, but I’m confused as to the general nature of what is going to be required to calibrate my machine, or as to why I can’t run the roadrunner program (and other programs correctly).

Thanks for helping.

7
It will not let me change steps per unit on the settings page it's set to 0 on all axis

Also, My steppers also have 200 pulses per revolution. ( 360 degrees divided by 1.8 degrees = 200 )

My lead screw is a 1/4-20 (it takes 20 turns to go 1 inch)

----------------------------------------------------------------------------

In my motor settings it only has Steps per = 2000, (What is this steps per ?) velosity, accelatrion, Step pulse & dir pluse = 0

I have Xylotex 425oz/in motors with the three axis driver board.

I can't get anything to size correctly, it's usless and I dont know what to do.

Thanks,


8
G-Code, CAD, and CAM discussions / Re: Mach3 & Eagle CAM Processor
« on: May 01, 2007, 05:11:52 PM »


Ok, I think I got to callabrate steps per rev or somthing like that.

I have a program like this, but it should be moving 11.9625 inches, but it is only moving 3/4 inch.

How do I fix that ?

Thanks,

G20

G90
G82 X0.0375 Y11.9625
G82 X0.0500 Y0.0500
G82 X11.9500 Y0.0500
G82 X11.9500 Y11.9500
(File Footer)
T01
G00 Z0.5000
M05
M02

9
G-Code, CAD, and CAM discussions / Mach3 G-CODE Size/Scale problem
« on: May 01, 2007, 04:22:12 PM »
I'm designing a PCB board.

I've posted some G-CODE below, it should be moving 11 inches
but it only moves 1/2 inch

Has anyone had this problem ? I've set it to be inches.

What setting do I need to modify ?

Thanks

10


Problem fixed ! It was a chepo db25 cable. I had asked the electronics store for
a good cable but they sold me a chepo.

Thanks everyone for all the help !    :-*

Pages: 1 2 »