Hello Guest it is April 24, 2024, 04:29:50 PM

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 - woodguy7777

Pages: « 1 2 3 4 5 6 7 8 »
41
G-Code, CAD, and CAM discussions / Edit g code help
« on: June 09, 2010, 09:04:55 AM »
i am trying to edit a g code file   but when i click on edit g code,  the edit box that i have seen on the tutorial video
does not show up.
 G-code edit selection button does not  launch the standard Windows Notepad program .
thanks paul

42
G-Code, CAD, and CAM discussions / Re: G code help
« on: April 12, 2010, 07:46:42 AM »
thanks Elpablito and Tweakie.
tweakie, the link you sent was very helpfull.
thanks paul

43
G-Code, CAD, and CAM discussions / G code help
« on: April 11, 2010, 05:17:17 PM »
i have fitted a laser pointer on my cnc  so that it makes it easy to centre my bit.
using MDI alt2  i enter this offset g0x-0.3709y7.0013  this brings my router bit to where the laser point was.
what i am trying to do is to put this in a file form.
instead of having to keep typing it in the MDI box.
just bring up the file and hit cycle start
paul

44
General Mach Discussion / Re: Z axis problems
« on: April 01, 2010, 05:53:49 PM »
Got the problem solved was the parallel port cable

45
General Mach Discussion / Z axis problems
« on: April 01, 2010, 11:10:01 AM »
Hi i own a shopbot cnc mill.  using mach 3.
i had some problems with my computer hard drive and lost mach3
i set up another computer installed and set up tuning  xy and z  also zero plate setting.
everything worked.
i then tried to run a file the z axis drove to the top and slammed into the stop.
i tried other files same problem.
also reinstalled everything same problem/
also tried another  computer same problem.
once this happen the zero plate does not work anymore.
bit comes down hit plate does not move up.
i wonder if this can be a controller problem.
hope someone can help
paul

46
General Mach Discussion / Re: zero plate problem
« on: March 26, 2010, 12:23:28 PM »
Hi
got the problem solved  added a debonce in general config to 1000
and it worked.
thanks for taking the time to help
paul

47
General Mach Discussion / Re: zero plate problem
« on: March 26, 2010, 09:15:58 AM »
Hi Tweakie
mach 3  R3.042.035
i had the setting correct  Go Z  0.5"
what i did was reinstalled your file.
this is what is going on.
the bit comes down touch the plate then retract 5.25 inches
from the top of the plate.
this is with your settings.
i am very new to mach3
paul

48
General Mach Discussion / Re: zero plate problem
« on: March 25, 2010, 03:00:06 PM »
thanks tweakie
i used your script and it worked  only you have the z axis retract as 5inches
i change this on the script but it still goes to 5 inches
eg  go z0 2" retract hight is set here.
paul

49
General Mach Discussion / Re: zero plate problem
« on: March 25, 2010, 10:03:12 AM »
Hi this is the
script i am using
    CODE: M3_ZZERO_PLT
'      DESC: Mach3 Z-Plate, Z Zeroing Routine
'
'      DATE: Tuesday, June 05, 2007
'    AUTHOR: Todd M. Reith <todd@customluthier.com>
'   VERSION: 1.5.0
'       WEB: http://www.customluthier.com
'
'  REQUIRES: MACH3 V2.0.075+
'            K2-CNC SCREEN SET
'            K2-CNC Z TOUCH PLATE w/ASSEMBLY
'            K2-CNC CONTROL BOX w/Z TOUCH PLATE DIN
'            PROBE ENABLED - PORT 1, PIN 15 INPUT - N.O.
'
'   SUPPORT: K2 DEVICES, INC., 790 E. DEBRA LN, ANAHEIM, CA 92805
'       WEB: http://www.k2cnc.com
'

' DECLARE USER DEFINED VALUES ==============================
' ==========================================================
' DO NOT CHANGE VALUES =====================================
' ==========================================================

Dim PlateThickness As Double
Dim ProbeFeed As Double
Dim ZaxisPullBack As Double
Dim MaxZaxisTravel As Double
Dim Debounce As Double
Dim CurrentFeed As Double

' USER DEFINED VALUES ======================================

PlateThickness = 0.062       'Z-plate thickness.
ProbeFeed      = 10             'Probing feedrate.
ZaxisPullBack  = .50           'Z axis retraction after zero
MaxZaxisTravel = 5.0            'Z axis full travel
Debounce       = 2500           'Debounce (Each count is approc 40us in debounce)

' FIXED VALUES =============================================

CurrentFeed    = GetOemDRO(818) 'Get the current feedrate.

' PROGRAM LOGIC=============================================

Response = MsgBox ("Ready to Z Zero?", 4 , "Auto Tool Zero")
If (Response = 6) Then 'User chose Yes

  Code "M61P0000"

  Code "G90 F" & ProbeFeed
 
  Code "(CAUTION: Z axis is preparing to move.)"
  Code "G4 P2" 'Pause.

  If GetOemLed (825)=0 Then

    Code "(Z axis is moving toward Z-plate.)"
    Code "G4 P1" 'Pause

    Code "G31Z-" & MaxZaxisTravel & " F" & ProbeFeed 'Straight probe Z

    While IsMoving()
    Wend

    Code "G4 P0.25" 'Pause
    ZProbePos = GetVar(2002)
    Code "G0 Z" & ZProbePos

    While IsMoving ()
    Wend

    Call SetDro (2, PlateThickness)
  Sleep(200) 
    Code "G4 P0.5" 'Pause, DRO update
    Code "G0 Z" & ZaxisPullBack 'Change the Z, Retract height
    Code "(Z axis has been zeroed.)"
    Code "F" & CurrentFeed 'Return to original feed rate
  Else
    Code "(Z-plate is grounded. Check connection and try again.)"
    Response = MsgBox ("Z-plate is grounded. Check connection and try again.", 16 , "Auto Tool Zero")
    Exit Sub
  End If
 
  Code "G4 P1" 'Pause
  Code "M61P" & Debounce
 
  Response = MsgBox ("Return to Work XY Zeros?", 4 , "Auto Tool Zero")
  If (Response = 6) Then 'User chose Yes 
    Code "(Returning to Work Zeros.)"
    Code "G4 P1" 'Pause
    Code "G0 X0 Y0" 'Return to XY Zeros 
  End If

Else 'User chose No
  Code "(Z axis routine terminated.)"
  Code "M61P" & Debounce
End If

thanks

50
General Mach Discussion / zero plate problem
« on: March 24, 2010, 06:24:59 PM »
I am having a problem using my zero plate
when the bit goes down and touch the plate it stops and does not go back up.
i then have to go and press the reset button,  send the bit up and down again.
then it works.
never on the first try
paul

Pages: « 1 2 3 4 5 6 7 8 »