샘플 프로그램4: MM_S4_Vis_ChangeModel
프로그램 소개
기능 설명 |
로봇은 먼저 Mech-Vision 파라미터 레시피를 전환한 후, Mech-Vision 프로젝트 실행을 트리거하고 비전 결과 획득하여 피킹 및 배치 작업을 수행합니다. |
||
파일 경로 |
Mech-Vision 및 Mech-Viz의 설치 디렉토리로 이동하여 |
||
필요한 프로젝트 |
Mech-Vision 프로젝트
|
||
사용 조건 |
|
이 샘플 프로그램은 참고용으로 제공됩니다. 사용자는 실제 상황에 맞춰 이 내용을 바탕으로 수정해야 하며, 해당 프로그램을 그대로 사용하지 않도록 하십시오. |
프로그램 설명
다음에는 MM_S4_Vis_ChangeModel 샘플 프로그램의 코드와 관련 설명입니다.
MM_S1_Vis_Basic 샘플과 비하면, 이 샘플은 Mech-Vision 파라미터 레시피를 전환할 수 있는 기능만 추가되었습니다.(이 기능의 코드가 굵게 표시됨). 따라서, MM_S4_Vis_ChangeModel의 MM_S1_Vis_Basic과 일치하는 부분은 다시 설명하지 않습니다. (일치하는 부분에 대한 정보는 MM_S1_Vis_Basic샘플 프로그램 설명을 참조하십시오). |
1: !-------------------------------- ;
2: !FUNCTION: trigger Mech-Vision ;
3: !project after switching recipe ;
4: !and get vision result ;
5: !Mech-Mind, 2023-12-25 ;
6: !-------------------------------- ;
7: ;
8: !set current uframe NO. to 0 ;
9: UFRAME_NUM=0 ;
10: !set current tool NO. to 1 ;
11: UTOOL_NUM=1 ;
12: !move to robot home position ;
13:J P[1] 100% FINE ;
14: !initialize communication ;
15: !parameters(initialization is ;
16: !required only once) ;
17: CALL MM_INIT_SKT('8','127.0.0.1',50000,5) ;
18: !move to image-capturing position ;
19:L P[2] 1000mm/sec FINE ;
20: !switch recipe of NO.1 ;
21: !Mech-Vision project, ;
22: !"MM_SET_MOD(Proj_num,Model_num)" ;
23: CALL MM_SET_MOD(1,1) ;
24: !trigger NO.1 Mech-Vision project ;
25: CALL MM_START_VIS(1,0,2,10) ;
26: !get vision result from NO.1 ;
27: !Mech-Vision project ;
28: CALL MM_GET_VIS(1,51,53) ;
29: !check whether vision result has ;
30: !been got from Mech-Vision ;
31: !successfully ;
32: IF R[53]<>1100,JMP LBL[99] ;
33: !save first vision point data to ;
34: !local variables ;
35: CALL MM_GET_POS(1,60,70,80) ;
36: !move to intermediate waypoint ;
37: !of picking ;
38:J P[3] 50% CNT100 ;
39: !move to approach waypoint ;
40: !of picking ;
41:L PR[60] 1000mm/sec FINE Tool_Offset,PR[1] ;
42: !move to picking waypoint ;
43:L PR[60] 300mm/sec FINE ;
44: !add object grasping logic here, ;
45: !such as "DO[1]=ON" ;
46: PAUSE ;
47: !move to departure waypoint ;
48: !of picking ;
49:L PR[60] 1000mm/sec FINE Tool_Offset,PR[1] ;
50: !move to intermediate waypoint ;
51: !of placing ;
52:J P[4] 50% CNT100 ;
53: !move to approach waypoint ;
54: !of placing ;
55:L P[5] 1000mm/sec FINE Tool_Offset,PR[2] ;
56: !move to placing waypoint ;
57:L P[5] 300mm/sec FINE ;
58: !add object releasing logic here, ;
59: !such as "DO[1]=OFF" ;
60: PAUSE ;
61: !move to departure waypoint ;
62: !of placing ;
63:L P[5] 1000mm/sec FINE Tool_Offset,PR[2] ;
64: !move back to robot home position ;
65:J P[1] 100% FINE ;
66: END ;
67: ;
68: LBL[99:vision error] ;
69: !add error handling logic here ;
70: !according to different ;
71: !error codes ;
72: !e.g.: status=1003 means no ;
73: !point cloud in ROI ;
74: !e.g.: status=1002 means no ;
75: !vision results ;
76: PAUSE ;
위 샘플 프로그램 코드에 해당하는 워크플로는 아래 그림에 표시되어 있습니다.

아래 표는 Mech-Vision 파라미터 레시피 전환의 설명입니다. 명령어 이름의 링크를 클릭하면 해당 명령의 상세 설명을 확인할 수 있습니다.
워크플로 | 코드와 설명 |
---|---|
Mech-Vision 파라미터 레시피를 전환하기 |
따라서, 이 명령어는 Mech-Vision프로젝트 1의 파라미터 레시피를 번호 1인 파라미터 레시피로 전환하는 것을 나타냅니다. |