Hello Guest it is April 20, 2024, 12:49:58 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 - salttank

Pages: 1
1
did the conditional jumps myself using VB on mach3.
they work like they would in any other machine. heres the syntax:
Quote
M1000 - EQUALS
On gcode:
Code: [Select]
M1000 P#1 Q#2 R100VB script:
Code: [Select]
If Param1() = Param2() Then
Code( "M98 P" & Param3() )
End If

i did all of the conditional comparisons: Equals, Diferent, Less than, Less or equal, Greater, Greater or equal
the macros are attached to this reply.

2
VB and the development of wizards / Re: help with simple code
« on: June 21, 2020, 09:29:54 AM »
you do not Need the Getvar

Quote
If Param1() <> Param2() Then
   Code ("M98 P" & Param3())
End If
That does it, thank you  ;D

3
VB and the development of wizards / help with simple code
« on: June 21, 2020, 01:08:41 AM »
i'm getting syntax error while tryng to compile this code. please help!
Quote
If GetVar(Param1()) <> Param2() Then
   Code("M98 P") & Param3()
End If   

4
VB with Mach3

could you give me some example please?

5
hello lads, i'm new in retrofiting in general but i kinda like the idea of cheap cnc machines.
i've got the idea for a polar milling program/cycle in the past days and after some thought i do think this can go somewhere.
i do know how to program in heidenhain, fanuc and sinumerik and after learning about mach and its fanuc similarities, i got some hope. didnt imagined that mach doesnt have conditional deviation.

my ideas stop here. if anyone know something to make this project work, do tell me   ;D

6
what i meant, was a physical setup, like the project of someone. but i did what you recomended and donwloaded mach4 hobby. the screen sure seems different from what i'm used to (fanuc, sinumerik, heidenhain), but the software seems to be quite complete.
i'm a manual programmer at heart and after reading some of the programing manual im thinking this is not really meant to be used with such programs. it is lacking basic cycles and commands that any industrial lathe would have. also, i couldnt find any information about C axis indexing or polar milling.

also, the "turn cycles" are quite a joke. and you cant post process it to generate some example code.

7
nice, could you recomend me a exemple setup for me to be based on?

8
hello, i'm quite intrigued about being able to do a cnc machine with older machining equipament. in especial i would like to do a full C axis lathe for to be a able to turn and mill simple parts.
would mach be able to handle this?

Pages: 1