Script Matlab to modify a sequence of G1 commands (G code)

조회 수: 2 (최근 30일)
Federico Paolucci
Federico Paolucci 2022년 8월 16일
편집: Walter Roberson 2022년 8월 17일
Hi, I'm searching for an automatic script to insert commands G4 and M42 in a sequence of G1: I'm developing a matlab script image acquisition and I have a sequence of G1 commands that represent various positions (x,y,z) of the extruder of a 3d printer. M42 guarantees photo capture and G4 the pauses. I have to have one image for each position. in the code below there is an example of two image acquistions. So, i want to
obtain a matlab script to modify a sequence of G1 by inserting G4 P1500; M42; G4 P250; M42 between each one
  댓글 수: 4
Walter Roberson
Walter Roberson 2022년 8월 16일
That looks like the desired result? Can you show us what the unmodified input would look like?
Federico Paolucci
Federico Paolucci 2022년 8월 16일
편집: Federico Paolucci 2022년 8월 16일
Yes, that is the desired result. The unmodified input contains only the G1 commands
G1 F1200 X43.708 Y42.174 Z6.7
G1 F1200 X43.708 Y42.374 Z6.7
I think I need a script like that in the link to reach the result, isn't it?

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2022년 8월 16일
편집: Walter Roberson 2022년 8월 17일
in_filename = 'InputGcodeFileNameGoesHere.txt';
out_filename = 'OutputGcodeFileNameGoesHere.txt';
L = readlines(filename);
L = regexprep(L, '^G1.*$', '$1\nG4 P1500 ;ms, stabilization pause\nM42 P47 S255 ;photo capture, set 1 on pin 47\nG4 P250 ;ms, photo caption pause\nM42 P47 S0 ;set 0 on pin 47');
writelines(L, out_filename);
Though if you happen to be using MacOS or Linux, I would suggest just coding the as a shell script that invokes sed https://linux.die.net/man/1/sed

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by