Hello Guest it is April 18, 2024, 11:24:55 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

961
VB and the development of wizards / Re: Turn tool turret macro
« on: April 21, 2020, 07:16:53 AM »
if i test here the SetCurrentTool() OEMDro(824) is updated imediatelly

962
VB and the development of wizards / Re: Turn tool turret macro
« on: April 21, 2020, 05:51:15 AM »
you have to tell the System the new Toolnumber by:

    SetCurrentTool( Tool )

963
German / Re: Probleme mit PWM
« on: April 16, 2020, 12:25:08 PM »
Das verstehe wer will, aber Hauptsache es funktioniert.

964
German / Re: Probleme mit PWM
« on: April 16, 2020, 09:51:07 AM »
das:

https://www.youtube.com/watch?v=xxq8zOC9Hxc

habe ich gerade noch gefunden, vielleicht hilft es.

965
German / Re: Probleme mit PWM
« on: April 16, 2020, 09:46:34 AM »
Probiere das Ganze doch mal mit pin 9 oder 14, ich weis, da hängt kein 0-10V Gedöns dahinter, nur mal zu sehen,
ob da be Step/dir eine Frequenz rauskommt.

966
General Mach Discussion / Re: Collision detection on THC
« on: April 14, 2020, 12:10:23 PM »
there should be a Folder c:\mach3\macros\your Profile Name.

there should be all your macro files, i think your probing will be in M3.m1s

967
German / Re: Probleme mit PWM
« on: April 12, 2020, 07:18:15 AM »
an dem Poti hast Du sicher auch schon gedreht?

968
German / Re: Probleme mit PWM
« on: April 12, 2020, 06:57:39 AM »
Du mußt natürlich, wenn die Spindel als  Step/Dir läuft, auch in Config -> Motortuning -> Spindle auch Steps/per Velocity und acceleration eintragen,
nur finde ich in der Doku nichts darüber welche Werte. Würde einfach mal rumprobieren und schauen.

Die Doku sagt auch, man kann sich auf Einfach CNC eine Standard XML runterladen, habe ich aber nicht gefunden.

EDIT: Hab gerade gesehen, in Deiner XML sind da Werte eingetragen. Hast Du in der ESS config bei Spndle Control auch auf  Step/Dir
zurückgestellt, also nicht PWM?

969
German / Re: Probleme mit PWM
« on: April 12, 2020, 04:36:07 AM »
OK, das mit Pin17 ist vom Breakoutboard abhängig.

Das Handbuch schreibt aber nix von PWM für die Spindel, lt. Handbuch läuft die Spindel  als Step/Dir.

970
General Mach Discussion / Re: Collision detection on THC
« on: April 11, 2020, 06:30:34 AM »
you can do it via macropump macro.

you have to add some code in your digitze macro as well:

Code: [Select]
'put this as the first line in your digitize macro
SetOEMLED(1400,1) 'tell macropum it it a real digitze



'put this as the last line in your digitize macro
SetOEMLED(1400,0) 'tell macropum it it a real digitze is done


the the code for macropump

Code: [Select]
If ((GetOEMLED(1400) = False) and (GetOEMLed(825) = True)) Then
   MSGBox ("Probe hit during cut")
   DoOEMButton(1003) 'Stop machine
End If

something like this should work, code not tested, just written down