Hello Guest it is March 19, 2024, 04:26:17 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

1261
LazyCam (Beta) / Re: Having issues loading GCode
« on: May 21, 2019, 11:41:11 AM »
something changed

{SPINDLE} should be M3

1263
General Mach Discussion / Re: Motors stalling /growling
« on: May 21, 2019, 02:41:14 AM »
so what are your final Settings?
how did you do the X/Y test, via Input in MDI line?

1264
Screen designer tips and tutorials / Re: lion stop screenset
« on: May 20, 2019, 04:49:13 AM »
create your own, it is not so difficult.

have a search for MachScreen to create the Screen.

i Little searching in the Forum will come up with most of the answers for your questions like here:
https://www.machsupport.com/forum/index.php?topic=39117.0

and if something is not working, post your questions here.

1265
General Mach Discussion / Re: Mill or Turn?
« on: May 20, 2019, 04:30:01 AM »
i assume you have checked accurate x-axis moves via gauge and mdi moves.
so what is left? all your cut's are to small so IMHO only two things are left:

-spindle rack get's pulled up by cutting force
-tool get's pulled down by cutting force

just trying to think loud. ;)

1266
General Mach Discussion / Re: Mill or Turn?
« on: May 19, 2019, 06:21:06 AM »
just an idea, is your tool cutting realy in the Center of the spindle?

1267
so please describe (Inputs Outputs function) what the single things should do.

1268
make a description how the toolchange should work, and we will see.

1269
i am nor realy sure wther a slave axis can be homed seperatly by VBScript (never used one), but you can try this code in VB Scripter window.

Code: [Select]
DoButton(27) 'reference C
While IsMoving()
Sleep(10)
Wend
SetDro(5,123) '123 is the offsetposition you want

1270
VB and the development of wizards / Re: edit script
« on: May 16, 2019, 04:32:59 AM »
put this code:
Code: [Select]
Begin Dialog ButtonSample 16,32,100,30,"Start Scan?"
OKButton 10,8,40,14
CancelButton 50,8,40,14
End Dialog

Dim Dlg1 As ButtonSample
Button = Dialog (Dlg1)
If Button = 0 Then
MsgBox "Scan Canceled!"
Exit Sub
End If

behind the OpenDigfile()