Hello Guest it is April 25, 2024, 02:11:41 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 - TPS

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

312
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

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

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

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

316
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)


317
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

318
General Mach Discussion / Re: Radius Mode/Diameter mode on Lathe
« on: August 04, 2021, 02:54:42 AM »
try to double step's/per in Motor Tuning page for X-axis.

319
General Mach Discussion / Re: Motor turning
« on: July 26, 2021, 10:55:04 AM »
this Problem is caused by your USB Controller, we had this a couple of weeks ago. there are controlers witch Support
two axis at a time and some others do not.

320
VB and the development of wizards / Re: string problem ""
« on: July 24, 2021, 07:36:19 AM »
try to use this:
Code: [Select]

namedesc = Mid(FileData,2,Len(fileData)-2)