Hello Guest it is May 06, 2024, 04:10:59 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

221
German / Re: Mach 3 Handrad
« on: May 26, 2022, 09:30:48 AM »
hier:
http://s3.amazonaws.com/s3.image.smart/download/101-60-310/101-60-310.zip

habe ich eine "komplette" Doku gefunden.

In der Datei "USB Motion Card STB5100 Manual.pdf" findet man die Belegung des 15poligen
Handrad Stecker's, damit könnte man nachmessen, ob der Y-Achsen Schalter funktioniert.

222
German / Re: Mach 3 Handrad
« on: May 26, 2022, 09:16:49 AM »
Dann glaube ich, haben wir das Ende der Möglichkeiten erreicht, denn das Plugin "übernimmt" in diesem Fall
die Kontrolle für die Achsenumschaltung. Entweder ist das Plugin fehlerhaft, oder der Achsenwahlschalter
hat bei der Y-Achse einen defekt.

223
General Mach Discussion / Re: Displaying variables in a DRO
« on: May 26, 2022, 03:06:05 AM »

224
German / Re: Mach 3 Handrad
« on: May 25, 2022, 01:42:22 PM »
mache Mal bitte den MPG Screen mit der TAB Taste auf, dann kannst Du mit dem Button Alt A die Achsen durchschalten wenn der MPG Mode aktiv ist. Kannst Du hier die Y Achse auswählen?

225
General Mach Discussion / Re: Displaying variables in a DRO
« on: May 25, 2022, 11:47:22 AM »
SetOEMDro(1234,GetVar(500))

for example

226
General Mach Discussion / Re: Bit depth zeroing tool help
« on: May 25, 2022, 11:39:46 AM »
i have tested this code:

Code: [Select]
CurrentFeed   = GetOemDRO(818) 'Get the current feedrate to return to later
CurrentAbsInc = GetOemLED(48) 'Get the current G90/G91 state
CurrentGmode  = GetOemDRO(819) 'Get the current G0/G1 state

If GetOemLed (825)=0 Then 'Check to see if the probe is already grounded or faulty
DoOEMButton (1010) 'zero the Z axis so the probe move will start from here
Code "G4 P3" ' this delay gives me time to get from computer to hold probe in place
Code "G90 G31Z-4. F2" 'probing move, can set the feed rate here as well as how far to move
While IsMoving() 'wait while it happens
Wend

'ZProbePos = GetVar(2002) 'get the exact point the probe was hit
'Code "G0 Z" &ZProbePos 'go back to that point, always a very small amount of overrun
'While IsMoving ()
'Wend

Call SetDro (2, .125) ' change .060 to your plate thickness and then adjust for final accuracy
Sleep 200 'Pause for Dro to update.
Code "G1 Z1. F50" 'put the Z retract height you want here, must be greater than the touch plate thickness
While IsMoving ()
Wend
Code "(Z axis is now zeroed)" 'puts this message in the status bar
Code "F" &CurrentFeed 'Returns to prior feed rate
Else
Code "(Z-Plate is grounded, check connection and try again)" 'this goes in the status bar if applicable
End If
If CurrentAbsInc = 0 Then 'if G91 was in effect before then return to it
Code "G91"
End If
If CurrentGMode = 0 Then 'if G0 was in effect before then return to it
Code "G0"
End If   

here, running without any error.

227
German / Re: Mach 3 Handrad
« on: May 25, 2022, 11:31:49 AM »
wenn Du den Drehschalter für die Achsenanwahl drehs wird aber schon die Y-Achse angewählt?

228
you need to figure out where and how the data is stored, then we can have a look how to convert them into G-Code.

229
Mach3 / Mach4 ?
in witch format are the data avaliable ? (Example)

230
General Mach Discussion / Re: Used CNC/unknown software
« on: May 05, 2022, 02:06:01 AM »
try to start with a simple setup. only e-stop and axis outputs.

in here:
https://www.machsupport.com/wp-content/uploads/2013/02/Mach3Mill_Install_Config.pdf

is a step by step description.