Hello Guest it is March 28, 2024, 02:32:35 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 - KatzYaakov

1
Mach4 General Discussion / Re: USB Buffer error
« on: November 20, 2023, 12:02:55 AM »
Why USB? Ethernet very easy to use ,no any problem and best it's add PCI Ethernet card this will close all cominication problem

2
It's long issues here csmio and mach4
If you search in there plugins you never see Mach 4
They always explain it's fit both but ( I'm talking when I search supplier then I chose Pokey's)but they never promote plug-in to mach 4

3
Mach4 General Discussion / Re: Cutting corners, Mach4 versus Mach3
« on: November 17, 2023, 03:47:13 AM »
Goomba dear
the Cv in mach 4 (i dont know mach 3 so cant compare ,but can compare all other cnc controler on market like Synteck taiwan or weihong china
in mach the Cv its real big problem
cant do almost nothig
if you run small segment you need run speed soo so slow...
if you run normal size you need every time play with the cv and never can get it well
i not cry for nothing ,i tell this point more the 4 years ,exact stop ,velocity stop,Cv...all this help nothing
i think the old cv with the 2 sliders was more usful not sure
but now corners in much not manage at all,
i did it in my application i add "G4 P..
in every corner its important to me
i realy not unbderstand how can use with the xisst solution to corners

4
Mach4 General Discussion / Re: Homing for Absolute Encoders
« on: November 17, 2023, 03:37:49 AM »
hi
we use on our machins mach + absolut encoder
yes the only way its home in place ehile homing procedure read the encoder value update registry
the the registry called as ofseet
i use my applicateion rs485  to read the value ,the application exe from comand line from mach so actualy for user its same one click
its wasnt so wasy to make all that procedure but finaly its work good

5
Mach4 General Discussion / Re: Tool back into the tool magazine?
« on: June 05, 2023, 10:02:24 AM »
one point very important
when stop been press while tc or some other reason that stop the machine
ONLY movment stop.all other continiue
this mean the tool will realse and fall
you must cheack before each output activate the machine status other you will have many problems

6
Mach4 General Discussion / Re: mcSignalWait
« on: May 23, 2023, 11:46:29 AM »
I test again delete all my crazy test ,at the end you totally correct it's only this  "local" declaration ... thanks alot alot

7
Mach4 General Discussion / Re: mcSignalWait
« on: May 23, 2023, 08:43:47 AM »
its complex becaus i play so much with all function ,i was so confused about this crazy beheivior until i found its all when  need wait
its not wait but continiue run ...

8
Mach4 General Discussion / Re: mcSignalWait
« on: May 23, 2023, 08:32:43 AM »
sory i test also without ,not work
mny function that worked before maybi last version ui not sure
but all wait signal some times work some times m function ignore ...some stack real real disaster

9
Mach4 General Discussion / Re: mcSignalWait
« on: May 22, 2023, 04:09:27 PM »
you mean my mistake only because i use"local"?
i have in my m6 more then 5 inputs i need cheak ,and always i must give time out ,its cylinder need wait
and always i had problem
if my mistake is the decleraton "local "ill remove
thanks

10
Mach4 General Discussion / mcSignalWait
« on: May 22, 2023, 01:42:34 PM »
 local dhs= mc.mcSignalWait(0, mc.ISIG_INPUT2, 1, 10);
                           hreg = mc.mcRegGetHandle(0, "iRegs0/break")
                             val = mc.mcRegGetValueString(hreg)
                             val = tonumber(val)                
                             if(val==1) then
                           
                              return 100               
                                    end   
                      if (dhs ~= 0) then--if not rise up in 10 second   

end

atach one sample but there some that the single wait just not work
i cant say when  but in some cases its just run over ,not check the input and act like the input not ok without wait the second ordered
i think ill reaplace this function with simple loop that cheack input each...500 msec... or something like that
any coment?