Hello Guest it is March 18, 2024, 10:14:34 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

211
German / Re: Mach 3 Handrad
« on: May 31, 2022, 07:50:12 AM »
Pin 1 ist Axis5 , Pin 11/12 sind 5V

evtl. noch VSS (Pin13/14/15) nach Pin 9 am Stecker von Handradkabel messen.

212
basicly you should be able to load your workpice alligned to x or y axis by making some removeable rails or something like this, if not G68 will be your friend.

213
German / Re: Mach 3 Handrad
« on: May 27, 2022, 05:56:18 AM »
ich denke Du solltest mit einem Ohmmeter von PC5V nach Pin 9 einen Durchgang messen können, wenn
der Wahlschalter auf Y-Achse steht. Einfach Mal mit den anderen Achsen vergleichen.

214
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.

215
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.

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

217
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?

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

for example

219
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.

220
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?