Hello Guest it is May 03, 2024, 09:01:31 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 - TPS

902
General Mach Discussion / Re: Locking a Mach3 setup
« on: June 28, 2020, 02:04:59 PM »
if you Google for sysinternals filemon, it might be a help to find who is changing the file.

903
you can do this with a few lines in macropump macro. make sure it is enabled in General config, and you remove Output3
in spindle tab.

Code: [Select]
'turn output ON
If GetDro(2) < -0.01 Then
ActivateSignal(OUTPUT3)
End If

'turn output OFF
If GetDro(2) >= 0.0 Then
DeactivateSignal(OUTPUT3)
End If

904
General Mach Discussion / Re: Locking a Mach3 setup
« on: June 27, 2020, 03:06:11 AM »
sorry no real idea,

i run 022 on all my machines, and never had any issue

905
General Mach Discussion / Re: Locking a Mach3 setup
« on: June 26, 2020, 03:21:36 PM »
hello Dave,
witch Version?

906
German / Re: gerader Moment in Kreisfahrt auf Eigenbau CNC - Anlage
« on: June 21, 2020, 03:36:21 AM »
ich meine velocity und acceleration in den Motor Tuning Seiten der Achsen.
velocity für x und y/a gleich stellen
acceleration für x und y/a gleich stellen

ist der Zahnriemen der Y/A Achse 1:1 übersetzt?
 

907
VB and the development of wizards / Re: help with simple code
« on: June 21, 2020, 03:23:05 AM »
you do not Need the Getvar

Quote
If Param1() <> Param2() Then
   Code ("M98 P" & Param3())
End If

908
German / Re: gerader Moment in Kreisfahrt auf Eigenbau CNC - Anlage
« on: June 20, 2020, 07:20:45 AM »
Fange mal mit realen (kleinen)Fahrwerten an:
V 1000
A 400
für alle Achsen (X/Y/A)

Deine Y/A Motor scheinen dem Geräusch fürchterlich zu schwingen, welche Hardware (Motor evtl Gertriebe Controller
Spindel , Steigung , direkter Antrieb) ist hier verbaut?

Versuche erst mal die Achsen X  und Y/A alleine vernünftig ans laufen zu bekommen.

Gruß Tom

909
General Mach Discussion / Re: Mach3 print Parameters
« on: June 18, 2020, 09:27:05 AM »
have a look for Operator -> GCode Var Monitor

maybe it is what you are looking for.

910
LazyTurn / Re: Protect Mach3 Addons
« on: June 12, 2020, 06:35:36 AM »
you can save your code in different macros let's say M400.m1s then you open this macro with Operator -> VBScript Editor and do a save as and choose filetype compiled.

then you edit your Buttons and run only the macro   -> Code "M400".

then you can store your M1s files somewhere else and delete them from macro Folder.