G-code - 4.3. G080 - G162

목록

G80: Cancel Canned Cycle (CNC specific)

G80: 고정 사이클 취소 (CNC에만 해당)

Support FiveD Teacup Sprinter Marlin Repetier Smoothie RepRapFirmware Machinekit MakerBot grbl Redeem ??? ??? ??? ??? ??? ??? No ??? ??? ??? ???

It cancel canned cycle modal motion. G80 is part of modal group 1, so programming any other G code from modal group will also cancel the canned cycle.

고정 사이클 모달 동작을 취소합니다. G80은 모달 그룹 1의 일부이므로 모달 그룹의 다른 G 코드를 프로그래밍하면 고정 사이클도 취소됩니다.

G90: Set to Absolute Positioning

G90: 절대 위치로 설정

Support FiveD Teacup Sprinter Marlin Repetier Smoothie RepRapFirmware Machinekit MakerBot grbl Redeem Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes

Example: G90

예: G90

All coordinates from now on are absolute relative to the origin of the machine.

이제부터 모든 좌표는 기계 원점을 기준으로 절대 좌표입니다.

(This is the RepRap default.)

(이것이 RepRap 기본값입니다.)

G91: Set to Relative Positioning

G91: 상대 위치로 설정

Support FiveD Teacup Sprinter Marlin Repetier Smoothie RepRapFirmware Machinekit MakerBot grbl Redeem Yes Yes Yes Yes Yes Yes Yes No Yes Yes Yes

Example: G91

예: G91

All coordinates from now on are relative to the last position.

이제부터 모든 좌표는 마지막 위치를 기준으로 합니다.

Note: RepRapFirmware latest revision firmware uses M83 to set the extruder to relative mode: extrusion is NOT set to relative by ReprapFirmware on G91: only X,Y and Z are set to relative.

참고: RepRapFirmware 최신 개정 펌웨어는 M83을 사용하여 압출기를 상대 모드로 설정합니다. 압출은 G91의 ReprapFirmware에 의해 상대 모드로 설정되지 않습니다. X, Y 및 Z만 상대 모드로 설정됩니다.

By contrast, Marlin (for example) DOES also set extrusion to relative on a G91 command, as well as setting X, Y and Z.

이와 대조적으로 Marlin (예를 들어)은 G91 명령에서 상대 돌출을 설정하고 X, Y 및 Z도 설정합니다.

G92: Set Position

G92: 위치 설정

Support FiveD Teacup Sprinter Marlin Repetier Smoothie RepRapFirmware Machinekit MakerBot grbl Redeem Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes

Parameters

매개변수

This command can be used without any additional parameters.

이 명령은 추가 매개변수 없이 사용할 수 있습니다.

Xnnn new X axis position

Xnnn 새 X 축 위치

Ynnn new Y axis position

Ynnn 새 Y 축 위치

Znnn new Z axis position

Znnn 새 Z 축 위치

Ennn new extruder position

Ennn 새 압출기 위치

Example

G92 X10 E90

G92 X10 E90

Allows programming of absolute zero point, by reseting the current position to the values specified.

현재 위치를 지정된 값으로 재설정하여 절대 영점을 프로그래밍할 수 있습니다.

This would set the machine's X coordinate to 10, and the extrude coordinate to 90.

이렇게 하면 기계의 X 좌표가 10으로 설정되고 돌출 좌표가 90으로 설정됩니다.

No physical motion will occur.

물리적인 움직임은 발생하지 않습니다.

A G92 without coordinates will reset all axes to zero.

좌표가 없는 G92는 모든 축을 0으로 재설정합니다.

G92.x: Reset Coordinate System Offsets (CNC specific)

G92.x: 좌표계 오프셋 재설정 (CNC에만 해당)

Support FiveD Teacup Sprinter Marlin Repetier Smoothie RepRapFirmware Machinekit MakerBot grbl Redeem ??? ??? ??? ??? ??? Yes No ??? ??? ??? ???

G92.1 - reset axis offsets to zero and set parameters 5211 - 5219 to zero. (X Y Z A B C U V W)

G92.1 - 축 오프셋을 0으로 재설정하고 매개변수 5211-5219를 0으로 설정합니다. (X Y Z A B C U V W)

G92.2 - reset axis offsets to zero.

G92.2 - 축 오프셋을 0으로 재설정합니다.

G93: Feed Rate Mode (Inverse Time Mode) (CNC specific)

G93: 이송 속도 모드 (역시간 모드) (CNC에 따라 다름)

Support FiveD Teacup Sprinter Marlin Repetier Smoothie RepRapFirmware Machinekit MakerBot grbl Redeem ??? ??? ??? ??? ??? ??? No ??? ??? ??? ???

G93 is Inverse Time Mode.

G93은 역시간 모드입니다.

In inverse time feed rate mode, an F word means the move should be completed in (one divided by the F number) minutes.

역시간 이송 속도 모드에서 F 단어는 이동이 다음 단계에서 완료되어야 함을 의미합니다.

For example, if the F number is 2.0, the move should be completed in half a minute.

예를 들어, F 번호가 2.0이면 이동은 30분(0.5분) 안에 이동이 완료되어야 합니다.

When the inverse time feed rate mode is active, an F word must appear on every line which has a G1, G2, or G3 motion, and an F word on a line that does not have G1, G2, or G3 is ignored.

역시간 이송 속도 모드가 활성화되면 G1, G2 또는 G3 동작이 있는 모든 라인에 F 단어가 나타나야 하며 G1, G2 또는 G3 동작이 없는 라인의 F 단어는 무시됩니다.

Being in inverse time feed rate mode does not affect G0 (rapid move) motions.

역시간 이송 속도 모드에서는 G (급속 이동) 동작에 영향을 주지 않습니다.

G94: Feed Rate Mode (Units per Minute) (CNC specific)

G94: 이송 속도 모드 (분당 단위) (CNC에 따라 다름)

Support FiveD Teacup Sprinter Marlin Repetier Smoothie RepRapFirmware Machinekit MakerBot grbl Redeem ??? ??? ??? ??? ??? ??? No ??? ??? ??? ???

G94 is Units per Minute Mode.

G94는 분 당 단위 모드입니다.

In units per minute feed mode, an F word is interpreted to mean the controlled point should move at a certain number of inches per minute, millimeters per minute, or degrees per minute, depending upon what length units are being used and which axis or axes are moving.

분당 단위 공급 모드에서 F 단어는 제어 지점이 분당 인치, 분당 밀리미터, 또는 분당 각도는 사용되는 길이 단위와 이동하는 축에 따라 달라집니다.

G100: Calibrate floor or rod radius

G100: 바닥 또는 로드 반경 교정

Support FiveD Teacup Sprinter Marlin Repetier Smoothie RepRapFirmware Machinekit MakerBot grbl Redeem No No No No Yes: 0.92 No No No No ??? ???

Parameters

매개변수

X Flag to set floor for X axis

X 축의 바닥을 설정하는 X 플래그

Y Flag to set floor for Y axis

Y 축의 바닥을 설정하는 Y 플래그

Z Flag to set floor for Z axis

Z 축의 바닥을 설정하는 Z 플래그

Rnnn Radius to add

추가할 Rnnn 반경

Examples

G100 X Y Z (set floor for argument passed in. Number ignored and may be absent.)

G100 X Y Z (전달된 인수에 대해 바닥을 설정합니다. 숫자는 무시되며 없을 수 있습니다.)

G100 R5 (Add 5 to radius. Adjust to be above floor if necessary)

G100 R5 (반경에 5를 추가합니다. 필요한 경우 바닥보다 높도록 조정)

G100 R0 (Set radius based on current z measurement. Moves all axes to zero)

G100 R0 (현재 z 측정을 기준으로 반경을 설정합니다. 모든 축을 0으로 이동합니다)

G130: Set digital potentiometer value

G130: 디지털 전위차계 값 설정

Support FiveD Teacup Sprinter Marlin Repetier Smoothie RepRapFirmware Machinekit MakerBot grbl Redeem No No No No No No No No No Yes ???

Example: G130 X10 Y18 Z15 A20 B12

예: G130 X10 Y18 Z15 A20 B12

Set the digital potentiometer value for the given axes.

주어진 축에 대한 디지털 전위차계 값을 설정합니다.

This is used to configure the current applied to each stepper axis.

각 스테퍼 축에 적용되는 전류를 구성하는 데 사용됩니다.

The value is specified as a value from 0-127; the mapping from current to potentimeter value is machine specific.

값은 0-127의 값으로 지정됩니다. 전류에서 전위차계 값으로의 매핑은 기계마다 다릅니다.

G131: Remove offset

G131: 오프셋 제거

Support FiveD Teacup Sprinter Marlin Repetier Smoothie RepRapFirmware Machinekit MakerBot grbl Redeem No No No No Yes: 0.91 No No No No ??? ???

G132: Calibrate endstop offsets

G132: 엔드스톱 오프셋 교정

Support FiveD Teacup Sprinter Marlin Repetier Smoothie RepRapFirmware Machinekit MakerBot grbl Redeem No No No No Yes: 0.91 No No No No ??? ???

G133: Measure steps to top

G133: 상단까지의 단계 측정

Support FiveD Teacup Sprinter Marlin Repetier Smoothie RepRapFirmware Machinekit MakerBot grbl Redeem No No No No Yes: 0.91 No No No No ??? ???

G161: Home axes to minimum

G161: 홈 축을 최소로

Support FiveD Teacup Sprinter Marlin Repetier Smoothie RepRapFirmware Machinekit MakerBot grbl Redeem No Yes No No No No No No No Yes ???

Parameters

매개변수

X Flag to home the X axis to its minimum position

X X 축을 최소 위치로 홈 지정하는 플래그

Y Flag to home the Y axis to its minimum position

Y Y 축을 최소 위치로 홈 지정하는 플래그

Z Flag to home the Z axis to its minimum position

Z Z 축을 최소 위치로 홈 지정하는 플래그

Fnnn Desired feedrate for this command

Fnnn 이 명령에 대해 원하는 이송 속도

Example

G161 X Y Z F1800

G161 X Y Z F1800

Instruct the machine to home the specified axes to their minimum position.

지정된 축을 최소 위치로 원점 복귀하도록 기계에 지시합니다.

Similar to G28, which decides on its own in which direction to search endstops.

엔드스톱을 검색할 방향을 자체적으로 결정하는 G28과 유사합니다.

G162: Home axes to maximum

G162: 홈 축을 최대로

Support FiveD Teacup Sprinter Marlin Repetier Smoothie RepRapFirmware Machinekit MakerBot grbl Redeem No Yes No No No No No No No Yes ???

Parameters

매개변수

X Flag to home the X axis to its maximum position

X 축을 최대 위치로 홈 지정하는 X 플래그

Y Flag to home the Y axis to its maximum position

Y 축을 최대 위치로 홈 지정하는 Y 플래그

Z Flag to home the Z axis to its maximum position

Z 축을 최대 위치로 홈 지정하는 Z 플래그

Fnnn Desired feedrate for this command

Fnnn 이 명령에 대해 원하는 이송 속도

Example

G162 X Y Z F1800

G162 X Y Z F1800

Instruct the machine to home the specified axes to their maximum position.

지정된 축을 최대 위치로 원점 복귀하도록 기계에 지시합니다.