Hello Guest it is April 27, 2024, 03:11:44 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 - glinner81

Pages: 1 2 »
1
General Mach Discussion / Re: Mach 3 atc on boxford lathe
« on: April 26, 2023, 03:55:14 PM »
works perfect, thank you very much  8)

2
General Mach Discussion / Re: Mach 3 atc on boxford lathe
« on: April 23, 2023, 04:08:22 PM »
would this move it to position using the previous script and added in from your script the x and z axis moves?

' (C) Graham Waterworth Mach forum.
' rough draft for a lock back to pawl type tool changer
' this has not been tried on any tool changer
' use/modify it as you wish, I take no responsibility
' for any damage to you or your equipment.

' NOTE current values are for a Boxford 125/160 lathe
' 8 position tool changer using MM calibration.
' set axis steps per to 20

If IsLoading() Then
  ' do now't, program loading
Else

' dim some vars

  Dim next_tool As Integer
  Dim current_tool As Integer
  Dim steps_per_tool As Integer
  Dim steps_after_pawl As Integer
  Dim max_tools As Integer
  Dim rotateCW As Integer
  Dim moves As Integer
  Dim fast_feed As Integer
  Dim slow_feed As Integer
  Dim axis As String
  Dim zero As Integer
  Dim to_pawl As Integer

' set up some vars

  zero = 0
  axis = "A" ' change to what ever axis you use for tool changer
  rotateCW = 0 ' set to 1 for CCW and 0 for CW rotation
  max_tools = 8 ' number of tools on turret
   
   ' stepper driver should be set to 1 step NO MICRO STEPPING!
   
  steps_per_tool = 900 ' number of steps needed to move 1 tool position (45 deg)
  steps_after_pawl = 100 ' set to amount to clear pawl after move (5 deg)
  steps_to_lock_back_on_pawl = 140 ' number of steps to lock onto pawl (7 deg)
  next_tool = GetSelectedTool()
  current_tool = GetCurrentTool()
  fast_feed = 1000 ' set to safe rapid rotation speed
  slow_feed = 200 ' set to safe creep speed back onto pawl.

' do some tool changing

  If next_tool > max_tools Then
    Message "Tool number too high, program stopped."
    Code "M30"
    End
  End If
   
  If next_tool<1 Then
    Message "Tool number too low, program stopped."
    Code "M30"
    End
  End If
   
  If next_tool=current_tool Then
    ' do nowt, we got it already

Message "ATC X-Axis to TC position"
      Code "G90 G53 G0 X2"
      While IsMoving()
         Sleep(15)
      Wend

      Message "ATC Z-Axis to TC position"
      Code "G90 G53 G0 Z2"
      While IsMoving()
         Sleep(15)
      Wend
  Else
  ' lets do some checking
    If next_tool > current_tool Then moves = next_tool - current_tool 
    If next_tool < current_tool Then moves = max_tools - current_tool + next_tool
   ' work out how far to move
    rapid_move = (moves * steps_per_tool) + steps_after_pawl
    to_pawl = zero - steps_to_lock_back_on_pawl
   ' reverse moves if needed   
    If rotateCW = 1 Then
      rapid_move = zero - rapid_move
      to_pawl =  Abs(to_pawl)
    End If
   ' set axis to zero
    Code "G92 " & axis & "0"
    Code "G91 G94 G61"
   ' start the move
    Code "G01 " & axis & rapid_move & " F" & fast_feed
    Code "G04 P250"
    While IsMoving()
    Wend
   ' move back to locking point
    Code "G01 " & axis & to_pawl &  " F" & slow_feed
    While IsMoving()
    Wend
   ' tell mach3 new tool
    SetCurrentTool next_tool
    Code "G90" ' back to absolute movement
  End If
End If

' end of tool change   

3
General Mach Discussion / Re: Mach 3 atc on boxford lathe
« on: April 23, 2023, 11:30:25 AM »
I guess it would have to read the current position, then move to say machine 0,0 do the atc change and then move back to last dro position so that it would keep the same position for the program?

4
General Mach Discussion / Re: Mach 3 atc on boxford lathe
« on: April 20, 2023, 08:43:47 AM »
Yesss! That works spot on thank you both very much :)
One final thing could tell me how I could get the atc to move to a safe position prior to the tool change? Thank you again

5
General Mach Discussion / Re: Mach 3 atc on boxford lathe
« on: April 19, 2023, 01:17:44 PM »
Will give that a go tomorrow. Thank you

6
General Mach Discussion / Re: Mach 3 atc on boxford lathe
« on: April 19, 2023, 11:32:30 AM »
Hi Graham your script looks very promising. I just can't see why it keeps the atc rotating.. any ideas?

7
General Mach Discussion / Re: Mach 3 atc on boxford lathe
« on: April 19, 2023, 06:45:32 AM »
What language is the macro written in? Is python or c++ or something else?

8
General Mach Discussion / Re: Mach 3 atc on boxford lathe
« on: April 19, 2023, 06:24:47 AM »
My turret just keeps rotating with the new macro

9
General Mach Discussion / Re: Mach 3 atc on boxford lathe
« on: April 16, 2023, 01:35:29 PM »
I will give it ago tomorrow hopefully and report back. Thanks a mil

10
General Mach Discussion / Re: Mach 3 atc on boxford lathe
« on: April 16, 2023, 02:51:05 AM »
Thanks for reply - atc moves freely. Its maybe something I'm missing in the tool table, I haven't set angles for the different tool positions... my thinking was if mach3 knows where the first tool position is then the macro would be able to drive to correct position for say t0202 etc. Also I'm not sure why it tries to move clockwise sometimes

Pages: 1 2 »