Search found 4 matches

by svyatokha
Fri Mar 08, 2019 7:20 pm
Forum: C Programs
Topic: Stop movment
Replies: 5
Views: 3810

Re: Stop movment

DisableAxis (0) seems to work fine)) Thank you. But if suddenly there are other commands that can stop axes this way, it would be great to know them)
by svyatokha
Fri Mar 08, 2019 6:55 pm
Forum: C Programs
Topic: Stop movment
Replies: 5
Views: 3810

Re: Stop movment

C code. #include "KMotionDef.h" main() { Jog(0,-10240); while (!ReadBit(136)) ; Jog(0,0); Zero(0); while (!CheckDone(0)) ; } and 2 videos. https://youtu.be/chKs0ToJYWY - there in without Zero(); (stop slowly when touch) https://youtu.be/sqffEWiZDL4 - there with zero (); (stop instantly when touched)
by svyatokha
Fri Mar 08, 2019 6:37 pm
Forum: C Programs
Topic: Stop movment
Replies: 5
Views: 3810

Re: Stop movment

if i don't call Zero(), axis stop slowly... i need to "hard stop".
sorry for my english
by svyatokha
Fri Mar 08, 2019 4:55 pm
Forum: C Programs
Topic: Stop movment
Replies: 5
Views: 3810

Stop movment

Hello

i need to stop axis immediately. Jog(0, 0) without Zero(0) slowly stop axis(near 1mm). How Stop movement immediately without Zero(0)?