Hello Guest it is May 07, 2024, 05:59:36 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

311
easier way is to use OEMLed's. they can be displayed easy on screen's.

313
German / Re: Nullpunkt verschiebt sich
« on: August 23, 2021, 01:20:41 AM »
Wie legst Du die Nullpunkte der X und Y Achse fest. Mit Referenzfahrt oder mit Zero X/Y Schaltflächen?

314
German / Re: ATC eigenbau
« on: August 11, 2021, 04:44:00 AM »
nein, Du brauchst nur bei Port's&Pin's Ausgänge für den Output6 port 10 und halt als pin den Ausgang den Du an der CSMIO benutzen willst.
 

315
German / Re: ATC eigenbau
« on: August 11, 2021, 04:32:17 AM »
die CSMIO-M hat ja 6 Ausgänge, adressiert werden die immer über Port 10 dann Pin 0-5 entspricht Ausgang 1-6

316
German / Re: ATC eigenbau
« on: August 11, 2021, 04:25:01 AM »
wie das bei der CSMIO-M genau geht, ist hier:

https://en.cs-lab.eu/wp-content/uploads/2016/06/csmio-ip-m-artykul.pdf

recht gut erklärt.

317
German / Re: ATC eigenbau
« on: August 11, 2021, 04:11:57 AM »
Redest Du vom #Output6 in Mach3 oder dem Ausgang 6 auf der CSMio ?

318
German / Re: ATC eigenbau
« on: August 10, 2021, 11:33:52 AM »
Servus,
ein paar weitere Informationen über Deine verbaute Hardware wären schon nicht schlecht.

319
General Mach Discussion / Re: Problem reading G31 sytem varibles
« on: August 05, 2021, 12:48:22 PM »
yes sure.
Code: [Select]
myvariable = 1.234
SetVar(1234,myvariable)

even both arguments can be a VB variable

Code: [Select]
myvariable = 1.234
mysetvar = 1234

SetVar(mysetvar,myvariable)


320
General Mach Discussion / Re: Problem reading G31 sytem varibles
« on: August 05, 2021, 02:43:09 AM »
from VB script documentation:

SetVar

Sub SetVar(VarNum As Integer, Val As Double)

This function sets the Mach variable specified by VarNum to the value given by Val.
Mach variables are accessible both to CB scripts, using the SetVar() and GetVar()
functions, as well as G-code programs, using the #nnnn syntax.
Arguments:
VarNum is Integer the number of the Mach variable to be set.
Val is the Double value to which the variable will be set
Return Value:
None

Example:

‘ Set a variable 1234 to our target position of 2.3456
SetVar(1234, 2.3456)

‘ Now move X to our target position
Code “G0 X #1234”

See also:
GetVar()

https://www.machsupport.com/wp-content/uploads/2013/02/Mach3_V3.x_Macro_Prog_Ref.pdf