RoboDK Forum
Function calls ing gcode——革命制度党ntable Version

+- RoboDK Forum (//www.sinclairbody.com/forum)
+-- Forum: RoboDK (EN) (//www.sinclairbody.com/forum/Forum-RoboDK-EN)
+ - - -论坛:通用RoboDK问题(//www.sinclairbody.com/forum/Forum-General-questions-about-RoboDK)
+--- Thread: Function calls ing gcode (/Thread-Function-calls-ing-gcode)



Function calls ing gcode-ylofosang-08-02-2022

Hi there,

I was wondering how I could get the function call usemovel or usemovep for universal robots in the robot program by reading it from the gcode. I'm trying to 3d print with a robotic arm and would like to have movel commands instead of movep commands at some points in the print.

Yari Lo-Fo-Sang


RE: Function calls ing gcode-Albert-08-02-2022

You can trigger program calls using the CALL command in your Gcode to force using movel commands:
Code:
...
G1 ...
; Use movel from now on:
CALL UseMoveL
G1 ...
...
; Use movep from now on:
CALL UseMoveP
G1 ...
...



RE: Function calls ing gcode-ylofosang-08-03-2022

Amazing, thank you very much!