hello,
I'm with some problems saving the position of the robot during a cycle.
How HERE instrutions work?
Can some one show me an example?
K-IDE support forum Find all information about Kawasaki's Integrated Development Environment |
Dear Wekker,
Zitat von wekker im Beitrag #1
I'm with some problems saving the position of the robot during a cycle.
How HERE instrutions work?
Zitat von wekker im Beitrag #1
Can some one show me an example?
IF DISTANCE (HERE, DEST) <= 1 AND NOT .finish THEN
.finish = TRUE
MessErr = TRUE
END
The most confusing thing when using HERE in a robot movement cycle is the existence of the forward pointer. If you look into the GoHome program you'll see that the robot's movement will be stoped before using the HERE instruction. The example code above is used in a loop. If you call the HERE instruction while the robot arm is moving you should take care about the values you receive.
Christian Quante
Technical Sales
Sales Department
Kawasaki Robotics GmbH
Rheiner Landstrasse 195A • 49078 Osnabrück
Germany
Posts: | 326 |
Date registered | 12.20.2019 |
Thank you
I attached a picture of a simple programme for what i need.
I move the robot to point "ponto1"
Then move to a point 500mm up the "ponto1"
And then i want to save this new position on "ponto2"
Move to point "ponto1" again
And finally move to "ponto2" it shoud be equal to "ponto1" up 500mm
This last step don't happens the robot don't move
Posts: | 5 |
Date registered | 07.20.2021 |
Hello,
Zitat von wekker im Beitrag #3
I attached a picture of a simple programme for what i need.
I move the robot to point "ponto1"
Then move to a point 500mm up the "ponto1"
And then i want to save this new position on "ponto2"
Move to point "ponto1" again
And finally move to "ponto2" it shoud be equal to "ponto1" up 500mm
This last step don't happens the robot don't move
:
LAPPRO ponto1, 500
BREAK ; Stop forward pointer and wait until movement finished
HERE ponto2
:
Christian Quante
Technical Sales
Sales Department
Kawasaki Robotics GmbH
Rheiner Landstrasse 195A • 49078 Osnabrück
Germany
Posts: | 326 |
Date registered | 12.20.2019 |
|