Scara Mini Gcode Header
스카라 클레이 프린터 g code 머릿말
G90
M82
M106 S0
M140 S0
M104 S0 T0
G28
01_ G0&G1: move
G0: Rapid Move : 반복되는 움직임
G1: Linear Move : 선적 움직임
이용 방법
G0 Xnnn Ynnn Ennn Fnnn Snnn
G1 Xnnn Ynnn Ennn Fnnn Snnn
파라미터즈
Xnnn The position to move to on the X axis
Ynnn The position to move to on the Y axis
Znnn The position to move to on the Z axis
Ennn The amount to extrude between the starting point and ending point
Fnnn The feedrate per minute of the move between the starting point and ending point (if supplied)
예시
G0 X12 ; move to 12mm on the X axis
G0 F1500 ; Set the feedrate to 1500mm/minute (파라미터가 하나이다)
G1 X90.6 Y13.8 E22.4 ; Move to 90.6mm on the X axis and 13.8mm on the Y axis while extruding 22.4mm of material
(파라미터가 여러개이다- 즉 여러 동작들이 한번에 이루어 진다.)
G1 F1500 ; Set feedrate to 1500mm/m
G1 X50 Y25.3 E22.4 ; Move and extrude
처음에 피더레이트를 1500mm/m로 설정하고 그 이후에 x축으로 50mm y축으로 25.3mm인다. 이 두점으로 이동하는 화중에 22.4mm의 재료를 익스트루딩 한다.
G1 F1500 ; Feedrate 1500mm/m
G1 X50 Y25.3 E22.4 F3000 ; Accelerate to 3000mm/m
예시 3에서는 초반에 설정한(G0 F1500)에서 3000mm/m으로 두점으로 이동중에 가속한다.
즉 G0는 처음에 세팅하면 별도로 파라미터값이 G1에서 변하지 않는한 유지된다.
02_ G92: set position
Xnnn new X axis position
Ynnn new Y axis position
Znnn new Z axis position
Ennn new extruder position
이 명령은 다른 부수적 파라미터 없이 쓰인다. 즉 이전 파라미터를 초기화 시킨다.
G92 X10 E90
Allows programming of absolute zero point, by reseting the current position to the values specified.
절대 영점을 프로그래밍 하게 해준다. 현재의 특정값을 재설정함으로써
위의 예시는 현재의 위치를 X10, 익스트루드 값을 E90으로 재설정 해준다. 이때 어떤 물리적 움직임은 일어나지 않는다.
03_ G90: set to absolute positioning
G90
All coordinates from now on are absolute relative to the origin of the machine. (This is the RepRap default.)
현재의 좌표가 기계의 원점이 된다.
04_M82: Set extruder to relative mode
M82
Makes the extruder interpret extrusion values as relative positions.
05_M106 S0 : Fan on
Pnnn Fan number (optional, defaults to 0)2Snnn
Fan speed (0 to 255; RepRapFirmware also accepts 0.0 to 1.0))
06_M140 S0 :Set Bed Temperature (Fast)
Pnnn Bed heater index1
Hnnn Heater number1
Tnnn Tool number2Snnn Active/Target temperature
Rnnn Standby temperature1 2
07_M104 S0 T0: Set Extruder Temperature
Dnnn Display temperature (Only Prusa)
Snnn Target temperatureRnnn Idle temperature (Only MK4duo)
08_G28: Move to Origin (Home)
X Flag to go back to the X axis origin
Y Flag to go back to the Y axis origin
Z Flag to go back to the Z axis origin
Refer to rerap.org
슬라이싱 GH 스크립트를 두 가지 방식으로 만들 수 있다.
- 연속적으로 이어지는 라인으로 Seam을 없애는 방법 (슬라이싱을 스파이럴로 하는 방법)
- 아니면 레이어 하나씩 프린트하고 올라가는 방법 (Seam이 생기므로 Retracttion을 매 레이어마다 해줘야한다.)
'Ceramic Printing' 카테고리의 다른 글
3D Clay Printer Nozle V2.0 (0) | 2023.11.01 |
---|---|
Weaving Vase (0) | 2021.09.28 |
노즐크기, 레이너 너비,레이어 높이 관계 (0) | 2021.09.05 |