Hello Guest it is April 19, 2024, 11:23:25 AM

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 - gantarone

Pages: 1
1
Mach4 General Discussion / Re: Module Works Simulator
« on: January 16, 2018, 11:16:39 AM »
Hi ,
on home page machsupport.com  it is read :
http://www.machsupport.com/3d-cutting-simulator-moduleworks-plugin/
NEW BETA RELEASE V2 – 3D Virtual Machining

but the only version downloadable is : mwMach4Installer_v102.exe  V102 and not V2 Beta .....

can someone tell me why?
Regards

2
Mach3 and G-Rex / Re: G100 Grex
« on: January 08, 2017, 12:32:50 PM »
Hi ,
that's the file with full installation!!!!

3
Mach3 and G-Rex / G100 Grex
« on: December 09, 2015, 01:32:22 PM »
Hi ,
i'm looking for Grex-Loader.exe !!!Help
In the zip file G100-V3.037.zip does not exist, someone can send it would be grateful!!! :-[ :-[
I can not make a discovery Ip address
Thanks


4
Thanks Gerry!!! you gave me the right advice!!!! :D :D
probably is a problem Manufacturer.....
I found the solution on a French website:
It is French but is understandable
Code:

SetOEMDRO(1000, 2) ' Numéro de l'axe ou faire le probe (0=X, 1=Y, 2=Z)
SetOEMDRO(1001, -90) ' Course maxi (le signe indique le sens de déplacement)
SetOEMDRO(1002, 20) ' Feed rate
SetOEMDRO(1003, 9) ' Numéro de l'entré de plapage (1 à 16
SetOEMDRO(1004, 1) ' état de l'entrée attendu (0 ou 1)
NotifyPlugins(3000)
' Attente fin de probe descente
While (GetOEMDRO(1000) = 0)
Sleep(10)
Wend
'Si succès, lancement de probe lent ver le haut
If (GetOEMDRO(1000) = 1) Then
SetOEMDRO(1000, 2) ' Numéro de l'axe ou faire le probe (0=X, 1=Y, 2=Z)
SetOEMDRO(1001,+10) ' Remontée en Z
SetOEMDRO(1002, 1) ' Feed rate
SetOEMDRO(1003, 9) ' Numéro de l'entré de plapage (1 à 16
SetOEMDRO(1004, 0) ' Attente re-laché de l'entrée 9
NotifyPlugins(3000)
' Attente fin de probe
While (GetOEMDRO(1000) = 0)
Sleep(10)
Wend
If (GetOEMDRO(1000) = 1) Then
ZProbe = GetOEMDRO(1001) ' Lecture de la position de palpage
Z = GetOEMDRO(85) ' Lecture positionactuelle
HPalpeur = 30 ' Déclaration hauteur palpeur
Zero = Z - ZProbe + HPalpe ' Distance erreur liée à deceleration
SetDRO(2, Zero) ' Initialisation zero pièce
Sleep(100)
NewZPos = Zero + 10 ' dégagement 10mm au dessus du capteur

Code "G0 Z"&NewZPos
While IsMoving()
Wend
Else
'Message ("Fin de probe avec erreur palpage lent")
End If
Else
'Message ("Fin de probe avec erreur palpage rapide")
End If

5
Hi All,
I have a problem on script Mach3 :
when I try to make a GetVar (2002 ) ,  it return 0  or an other wrong value..... (sometime it give me the correct value)

1 ) I am not using the classical parallel pc but a dedicated card ( Intepcnc 2.1 to control up to 5 axes )
2 ) and the machine is a virtualized Windows XP ( Parallel system on OSX )


If someone is found in the same problem maybe you can help , or find another command like GetVar(2002)
Regards
Simone

Pages: 1