Hello Guest it is March 28, 2024, 05:07:39 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 - gabi68

Pages: 1 2 3 4 5 »
1
General Mach Discussion / Re: Help connecting this board to a controller
« on: September 24, 2015, 05:39:51 AM »
Hi Tweakie,


I need one of the boards for limit switches. I can connect that from the UC300 also?

Gabi


2
General Mach Discussion / Re: Help connecting this board to a controller
« on: September 23, 2015, 02:56:39 PM »
C'mon guys,

Anybody?

Thx

3
General Mach Discussion / Help connecting this board to a controller
« on: September 23, 2015, 10:40:17 AM »
Hi to all,

I have a controller based on G203V drives built by Dan Mauch. I try to contact him but it is busy (his support was very good during years).
Anyway I have this:
- BOB - http://www.cnc4you.co.uk/Breakout-Board-and-PSU's/Breakout%20board%20KK01%20CNC%20Stepper%20Motor%205%20Axis-with-Relay ;
- Helping BOB - http://www.cnc4you.co.uk/Breakout-Board-and-PSU's/Breakout-board-BM01 ;
- USB motion controller UC300 -  http://www.cnc4you.co.uk/Motion-Control/UC300-USB-Motion-Controller.
- female to female DB25 cable
The connection from controller to BM01 it is made it with a female to female DB25 cable. I need to connect my BM01 with the KK01. The hard for my is that connection, basically I dont know which pin is going where.

Thank you
Gabi

4
Can someone told me how can use that data from data chart to fill up the fields on wizzard?

TIA
Gabi

5
Screen designer tips and tutorials / Re: Add a A DRO
« on: October 12, 2009, 11:20:03 AM »
Hi Klaus,

After a better look on config I found my problem. Your assumption was correct. A axis wasn't enabled. Every thing it is as should be now. I think I need more sleep  ;D.

RGDS
Gabi

6
Screen designer tips and tutorials / Re: Add a A DRO
« on: October 12, 2009, 05:52:28 AM »
Hi Klaus,

I think so. In the macro message it is "Requested Tool NO=1 till 6" It apperas on message line. That is the message you are talking about?

RGDS
Gabi

7
Screen designer tips and tutorials / Re: Add a A DRO
« on: October 12, 2009, 05:38:08 AM »
Hi Klaus,

I think it is. The  path it is: C:\Mach3\macros\Mach3Turn and the name of that file it is m6661.m1s.

RGDS
Gabi

8
Screen designer tips and tutorials / Re: Add a A DRO
« on: October 11, 2009, 09:31:44 PM »
Hi Brett,

I try that too and I don't see any numeber moving. Remember it is a screen for a lathe. Sorry to be a PITA but I don't know how to do that. Please help me

RGDS
Gabi

9
Screen designer tips and tutorials / Re: Add a A DRO
« on: October 11, 2009, 08:14:17 PM »
Hi Brett,

I already try that. Here it is what I do:
-  I put that DRO on screen
- OEM code is 86
- X an Z axis show the right value from macro

A DRO dosent show anything. Why?

RGDS
Gabi

10
Screen designer tips and tutorials / Add a A DRO
« on: October 11, 2009, 09:39:29 AM »
Hi to all,

I have this macro (writen by Graham I think):

' Boxford 160TCL Toolchanger Macro.
'
' Works by turning CW to just past the tool position
' and then CCW into a stop.
' Axis setup as rotary e.g. move 360 = 1 full turn.



If IsLoading() Then
' Do Nothing, program loading
Else

' Dim Variables

Dim Num_Tools As Integer
Dim CW_Steps_Per_Tool As Integer
Dim CCW_Steps As Integer
Dim HoldingDRO As Integer
Dim Requested_Tool As Integer
Dim Current_Tool As Integer
Dim CW_Feed As Integer
Dim CCW_Feed As Integer

Dim moves As Integer
Dim total_move As Integer


' set up some vars

Num_Tools = 6
CW_Move_Per_Tool = 360/Num_Tools
CCW_Move = 10
HoldingDRO = 1050
Requested_Tool = GetSelectedTool()
Current_Tool = GetUserDRO(HoldingDRO)
CW_Feed = 1500
CCW_Feed = 1000
Current_Feed = GetOEMDRO(818)


' start tool change

Message ("Requested Tool No=" & Requested_Tool)

If Requested_Tool > Num_Tools Then
Message "Requested Tool No. too high, program stopped."
Code "M30"
End
End If

If Requested_Tool < 1 Then
'Message "Requested Tool No. too low, program stopped."
Code "M30"
End
End If

If Requested_Tool = Current_Tool Then
' do nothing
Else
' lets do some changing
If Requested_Tool > Current_Tool Then moves = Requested_Tool -Current_Tool
If Requested_Tool < Current_Tool Then moves = Num_Tools - Current_Tool +Requested_Tool

total_move = (moves * CW_Move_Per_Tool)+(CCW_Move/2)

Code "G0 z-10 F1300"
Code "G0 x-10"
Code "G91 G94" 'incremental & Feed per minute
Code "G0 A" & total_move '& "F" & CW_Feed
Code "G0 A" & "-" & CCW_Move '& "F" & CCW_Feed
While IsMoving()
Wend

SetCurrentTool Requested_Tool
SetUserDRO HoldingDRO, Requested_Tool
Code "G90" ' back to absolute movement
Code "F" & Current_Feed
End If
End If

' end of tool change       
I need to put a A DRO on my lathe screen to see if my A axis is running. I don't have anything connects yet. I just want a simulation.
How can I do that?

RGDS
Gabi

Pages: 1 2 3 4 5 »