Hello Guest it is May 03, 2024, 01:53:54 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

2161
VB and the development of wizards / Re: Control micro servo with Macro
« on: October 28, 2017, 04:16:14 AM »
if you need such a precise timing  (1,5/18,5ms) the only way is a extrenal Signal Generator. 

2162
VB and the development of wizards / Re: Auto tool zero script problems
« on: October 27, 2017, 02:49:25 PM »
preset_feed = 4000  -->mm/s ?? what ever

in witch dream are you living??

what acc/dcc ??

what Motion Controller ??

try to learn a Little bit about lineare movement's

2163
VB and the development of wizards / Re: Control micro servo with Macro
« on: October 27, 2017, 02:40:37 PM »
activate and deactiate outpult will allways create a square Signal (what else !!?)

1.5ms on a Windows System where the macro scripting is running in a 10ms Task,
no way.

---Is this the motion controller, or macro's just can't create a nice waveform ?

what Hardware are you using on the Controller side ?



Thomas

2164
VB and the development of wizards / Re: STOP command
« on: October 16, 2017, 01:08:22 PM »
hi,
if you have a look to the Mach Script Language Referenceit says:

Sleep  Sub
Sleep(Time As Integer)

so a 100000 is more than an integer can take.

Thomas

2165
Hi,
as i have written, i don't know the english Translation for this thing.

if you Google for "cnc tool presetter" i think you will get into the wright direction.

Thomas

2166
or you try something like this:


sorry don't know the englisch word for this Thing.

something like tool lenght sensor.

Thomas

2167
solved by hours of scoping.

Thomas

2168
Third party software and hardware support forums. / Fanuc Pulse Coder
« on: July 06, 2017, 11:19:32 AM »
on my TongIL retrofit Project, i am at the spindle now.
the spindle has a pulse code A20B-9000-0380.

on the web i found two different types.

i have the the one with the following signals:

0V -> GND
5V -> Power supply

VA
VA/   the Sinus wave

VB
VB/  the Cosinus wave

so far so clear and i can measure the signals with the scope

then we have a

VZ witch should be the Zero pulse

the is no VZ/.

i have measured VZ to GND allways 2,5V
i have measured VZ to 5v allways -2,5V

i was never able to see a pulse on the scope.

maybe one of you has got any further ideas.

Regards Thomas


2169
Hello Bravo1,

went through your code, i think , like tweakie, the Problem is:

Call SetOemDRO (2,PlateThickness) 'Set X-Axis DRO to Touch Plate thickness

OemDRO 2 is in my documentation -> Pulse Freq DRO

should be SetDRO(0,PlateThickness) 'Set X-Axis DRO to Touch Plate thickness

Thomas


2170
General Mach Discussion / Re: Auto Zero and Tool Length Zero
« on: July 05, 2017, 03:51:05 AM »
Hello Matt,

after a G31 you allways should read the exact Position where the probe was hit with:

ZProbePos = GetVar(2002) // 2000 -> X , 2001 -> Y , 2002 -> Z

to write the tool lenght you have to use:

SetToolParam(ToolNr,2, ZProbePos)

to get the current ToolNr:

ToolNr = GetCurrentTool()

Play a Little bit arround with this functions, and you will familar with the complex theme of
offset's and Toollenght.

Thomas