Hello Guest it is April 27, 2024, 08:12:51 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

2361
General Mach Discussion / Re: new guy with problems
« on: April 01, 2015, 04:48:24 AM »
Hi,

check your scalings in main window to be 1.0.
check your step's per unit in motor tuning window.
check your motors are fitted correctly (no loose to the spindle)

Thomas

2362
CS-Lab / Re: Csmio/IP-A drives
« on: March 26, 2015, 02:34:19 PM »
if you install this:

http://www.cs-lab.eu/en/upload/firmware/setup_CSMIO-IP-A-2.603.zip

you get all you Need.

Thomas

2363
CS-Lab / Re: Csmio/IP-A drives
« on: March 25, 2015, 05:34:45 PM »
Hi Ghantos,

if your servo controllers do not support a Encoder Simulation, you have to
install seperate Encoders/glas linear guides or thomething like this.

post some more Information about yor drives.

Thomas

2364
General Mach Discussion / Re: spindle problem
« on: March 25, 2015, 02:13:13 PM »
ok,

never tryed to change spindle Speed during spindle was on. allways in combination with M3.

sorry no further idea.

Thomas

2365
General Mach Discussion / Re: Configure an output to follow an input?
« on: March 25, 2015, 02:06:14 PM »
Hi

brainsor or macropump are your friends.

Thomas

2366
General Mach Discussion / Re: spindle problem
« on: March 25, 2015, 02:01:23 PM »
Hi jve,

have you entered S2000 in the MDI line ?

Thomas

2367
Share Your GCode / Re: new machine
« on: March 25, 2015, 01:57:59 PM »
Hi jimbo1954,

i think something like this should work:

( code to run back and forth)
#1 = 100 (start Speed)
G90 G80 G40 G54 G21 G17 G50 G94 G64 (safety block)
M98 P1 L100  (RUN SUBROUTINE CODE 100 TIMES)
M30

o1
#1 = [#1 +100] (increase Speed)
G1 Y1900 F[#1] ( YAXIS TRAVEL AT FEED RATE)
G1 Y0.0    (RETURN TO Y=0)
G4 P 2  ( PAUSE or can use M1  instead of G4)
M99 (RETURNS BACK TO THE )
%


not tested yust try.

Thomas

2368
CS-Lab / Re: Connection Failed. CSMIO/IP not found.
« on: March 21, 2015, 03:59:19 AM »
Hi Jun,

ping in a cmd is ok.

dont know your network, if there is no dhcp server the CSMIO
has normaly 10.1.1.2 subnet 255.255.255.0  just make sure that you (pc) is in the same
network.

check your ip by CMD -> IPCONFIG

Thomas   

2369
General Mach Discussion / Re: x probe
« on: March 20, 2015, 06:56:50 AM »
Hi,

for a exact probing you should also add the following

        XNew = GetDro(0) + 3      'probe to current position + 3 mm
        Code "G31 X" &XNew
        While IsMoving()      'wait for prob move to complete
        Wend

       Xprobepos = getvar(2002)     'get the position where we hit the probe
        Code "g1 x" &Xprobepos         'go back to this position
        While ismoving()
        Wend


Thomas

2370
General Mach Discussion / Re: x probe
« on: March 20, 2015, 05:33:41 AM »
Hi Amnon,

what are you trying to do here

X0 = SetDRO(0,(-1)*(GetUserDRO(1300))+(-1)*(GetUserDRO(1301)/2))   ' UserDRO(1300) - probe diameter; UserDRO(1301) - plate thickness;

think this should work better

X0 = (-1)*(GetUserDRO(1300))+(-1)*(GetUserDRO(1301)/2)   ' UserDRO(1300) - probe diameter; UserDRO(1301) - plate thickness;
SetDRO(0,X0)   ' Set X Dro to calculated value

Thomas