mach3 screenset blu Big-Tex feedrate probe.

Sezione dedicata a Mach3
Rispondi
Avatar utente
Alberto65
Junior
Junior
Messaggi: 86
Iscritto il: domenica 8 aprile 2012, 23:47
Località: Udine

mach3 screenset blu Big-Tex feedrate probe.

Messaggio da Alberto65 » lunedì 12 dicembre 2016, 23:49

Salve a tutti.
Vi propongo il mio problema della funzione cerca bordo con utensile .
quando eseguo la ricerca con asse y + e y - tutto procede come previsto con

(feedrate F 50 Units min 8.40) ricerca con velocità bassa , guardando sul screen a

sinistra in alto leggo il gcode Mill G15 G1 G17 G40 G21 G90 G94 G54 G4 come ho

evidenziato nella foto .
Mentre quando eseguo la ricerca con asse x + x - sorgono problemi di feedrate parte

in ricerca a tuta velocità (feedrate F 50 Units min 371.78 ) si legge nella foto , ma

facendo altre prove arriva anche Units min 600.00.
Sempre guardando lo screen a sinistra in alto leggo questa volta il gcode Mill G15

G0 G17 G40 G21 G90 G94 G54 G4 . quindi deduco che la ricerca sia cosi velofìce

dato che legge codice G0 .
sono settimane che mi pongo questo problema e non esco anche facendo ricerche

sul web , nessuno parla questo problema .
Aggiungo che queste foto di mach3 si nota che non e referenziata si vedono gli

assi in rosso , non avendo sensori homing spiego che queto mach3 lo sto facendo

lavorare sul notebook.
Quello esecutivo e nel pc fisso ed e li che si presenta questo problema con la cnc .

Ringrazio fin da ora chi può darmi una dritta.
ASSE X - FEEDRATE ERRATO GCODE G0 800 x 600 .jpg
ASSE Y - FEEDRATE GIUSTO 800x600.jpg
Non hai i permessi necessari per visualizzare i file e le foto allegati in questo messaggio. Per visualizzare tali file devi registrarti ed effettuare il Login

Avatar utente
Alberto65
Junior
Junior
Messaggi: 86
Iscritto il: domenica 8 aprile 2012, 23:47
Località: Udine

Re: mach3 screenset blu Big-Tex feedrate probe.

Messaggio da Alberto65 » martedì 13 dicembre 2016, 10:06

Salve aggiungo anche lo Script del comando ricerca bordo del probe :
----------------------------------------------------------------------------------------------------------------------
Sub Main() 'made it a sub, so you can return on "show stopper" errors
'Option Explicit 'Written by Big-Tex Jan 29 2015

Dim Xtravel, Ytravel, Xback, Yback, ProbeFeed
Dim CurrentFeed, Xcurrent, Ycurrent, Zretract
Dim XPos1, XPos2, YPos1, YPos2, Xnew, Ynew, XCenter, YCenter
Dim CurrentAbsInc

Xcurrent = GetDro(0)
Ycurrent = GetDro(1)
CurrentFeed = GetOemDRO(818) 'get the current feedrate to return to later
Zretract = GetOemDRO(1202) 'get Z tool change location
CurrentAbsInc = GetOemLED(48) 'Get the current G90/G91 state

'//////// the block below will set all your reusable vars depending on Inch or mm.
'//////// this sets the vars so you only need ONE large block of probing code.

If GetOEMLED(801) Then 'ON = English Measure INCH
Xtravel = 3
Ytravel = 3
Xback = 1
Yback = 1
ProbeFeed = 4 'Probe Feed Speed

Else 'OFF = Metric Measure MM
Ytravel = 75
Ytravel = 75
Xback = 25
Yback = 25
ProbeFeed = 50 'Probe Feed Speed
End If

'//////// Error Condition checking code

If GetOemLED(16)<>0 Then 'Checks for machine coordinates
Code "(Please change to working coordinates)"
Exit Sub 'ERROR! exit the macro
End If

If GetOemLED(825)<>0 Then
Code "(Tube Grounded Check connection and try again)"
Exit Sub 'ERROR! exit the macro
End If

'//////// Start Probing Code, INSIDE PIPE.
'//////// The vars will be Inch or Metric from above if/else statment

sleep(1000) 'pause 1 seconds to give time to position PLATE
Code "F" & ProbeFeed 'slow down feedrate

'//////// Start Probing X axis

XNew = ( GetDro(0) - Xtravel ) 'probe to left
Code "G90 G31X" & XNew
While IsMoving() 'wait for the move to finish
Wend
XPos1 = GetVar(2000) 'get the probe touch location
Call SetDRO(0,0) 'zero X dro

Code "G0 X" & Xback 'rapid move back
While IsMoving() 'wait for the move to finish
Wend

'//////// Retract Code,

sleep(250) 'pause for Dro to update.
Code "G53 G0 Z" & Zretract
While IsMoving ()
Wend

'//////// End Probing Code,

If GetOEMLED(801) Then 'ON = English Measure INCH
Code "(Edge found in English Units)" 'puts this message in the status bar
Else 'OFF = Metric Measure MM
Code "(Edge found in Metric Units)" 'puts this message in the status bar
End If

If CurrentAbsInc = 0 Then 'if G91 was in effect before then return to it
Code "G91"
End If

End Sub

Avatar utente
Alberto65
Junior
Junior
Messaggi: 86
Iscritto il: domenica 8 aprile 2012, 23:47
Località: Udine

Re: mach3 screenset blu Big-Tex feedrate probe.

Messaggio da Alberto65 » martedì 20 dicembre 2016, 18:38

Salve , arrivato a quota 100 visite .... mi ero illuso che qualche persona avrebbe dato un proprio commento , con il mio problema .
Ok ho Risolto ! armato di pazienza e passione , Buon natale a voi .

billielliot
Senior
Senior
Messaggi: 1747
Iscritto il: martedì 16 ottobre 2007, 23:23
Località: Trezzo sull'Adda

Re: mach3 screenset blu Big-Tex feedrate probe.

Messaggio da billielliot » martedì 20 dicembre 2016, 18:52

Ciao Alberto65,

se puo' esserti di consolazione, io ho aspettato 10 mesi il primo intervento. E ho condiviso una esperienza senza porre problemi.

E' pur sempre solo un forum!

Buon Natale anche a te!

Ciao :-)

Mauro

P.S. mia opinione: e' la condivisione delle soluzioni che denota la marcia in piu' che anima le persone che le trovano con impegno, fatica e sudore. A porre problemi e chieder soluzioni son tutti capaci.
Amat victoria curam

Avatar utente
kalytom
Administrator
Administrator
Messaggi: 42347
Iscritto il: lunedì 13 novembre 2006, 9:17
Località: Poggiomarino (Na)
Contatta:

Re: mach3 screenset blu Big-Tex feedrate probe.

Messaggio da kalytom » giovedì 29 dicembre 2016, 17:17

condivido pienamente, Buon Natale anche a te
Immagine

Avatar utente
Pedro
God
God
Messaggi: 7021
Iscritto il: domenica 6 aprile 2008, 18:44
Località: Roma

Re: mach3 screenset blu Big-Tex feedrate probe.

Messaggio da Pedro » giovedì 29 dicembre 2016, 17:24

premesso che questo, come è stato detto, è un forum e non un call center di servizio assistenza comunque spesso se non si hanno soluzioni invece di scrivere: ciao, vorrei tanto aiutarti ma non so come si fa prima, e forse più bella figura, a non rispondere. tra l'altro se hai trovato la soluzione, buon per te, e non la condividi almeno non criticare; scrivi ho risolto grazie e punto
"Ho controllato molto approfonditamente," disse il computer, "e questa è sicuramente la risposta. Ad essere sinceri, penso che il problema sia che voi non abbiate mai saputo veramente qual è la domanda."

Rispondi

Torna a “Mach3”