Gcode G代码详解

上传人:优*** 文档编号:57277158 上传时间:2022-02-23 格式:DOC 页数:18 大小:74KB
返回 下载 相关 举报
Gcode G代码详解_第1页
第1页 / 共18页
Gcode G代码详解_第2页
第2页 / 共18页
Gcode G代码详解_第3页
第3页 / 共18页
点击查看更多>>
资源描述
真诚为您提供优质参考资料,若有不当之处,请指正。reprap wiki上面的Gcode说明G-codeFrom RepRapWiki(Redirected from Gcode)Jump to: navigation, searchContents hide1 Introduction2 RepRap G Code Fields3 Comments4 Individual commands 4.1 Checking 4.1.1 N and *4.2 Buffered G Commands 4.2.1 G0: Rapid move4.2.2 G1: Controlled move4.2.3 G28: Move to Origin4.3 Unbuffered G commands 4.3.1 G4: Dwell4.3.2 G20: Set Units to Inches4.3.3 G21: Set Units to Millimeters4.3.4 G90: Set to Absolute Positioning4.3.5 G91: Set to Relative Positioning4.3.6 G92: Set Position4.4 Unbuffered M and T commands 4.4.1 M0: Stop4.4.2 M17: Enable/Power all stepper motors4.4.3 M18: Disable all stepper motors4.4.4 M20: List SD card4.4.5 M21: Initialise SD card4.4.6 M22: Release SD card4.4.7 M23: Select SD file4.4.8 M24: Start/resume SD print4.4.9 M25: Pause SD print4.4.10 M26: Set SD position4.4.11 M27: Report SD print status4.4.12 M28: Begin write to SD card4.4.13 M29: Stop writing to SD card4.4.14 M40: Eject4.4.15 M41: Loop4.4.16 M42: Stop on material exhausted4.4.17 M43: Stand by on material exhausted4.4.18 M80: ATX Power On4.4.19 M81: ATX Power Off4.4.20 M84: Stop idle hold4.4.21 M92: Set axis_steps_per_unit4.4.22 M101 Turn extruder 1 on Forward4.4.23 M102 Turn extruder 1 on Reverse4.4.24 M103 Turn all extruders off4.4.25 M104: Set Extruder Temperature (Fast)4.4.26 M105: Get Extruder Temperature4.4.27 M106: Fan On4.4.28 M107: Fan Off4.4.29 M108: Set Extruder Speed4.4.30 M109: Set Extruder Temperature4.4.31 M110: Set Current Line Number4.4.32 M111: Set Debug Level4.4.33 M112: Emergency Stop4.4.34 M113: Set Extruder PWM4.4.35 M114: Get Current Position4.4.36 M115: Get Firmware Version and Capabilities4.4.37 M116: Wait4.4.38 M117: Get Zero Position4.4.39 M118: Negotiate Features4.4.40 M119: Get Endstop Status4.4.41 M126: Open Valve4.4.42 M127: Close Valve4.4.43 M128: Extruder Pressure PWM4.4.44 M129: Extruder pressure off4.4.45 M140: Bed Temperature (Fast)4.4.46 M141: Chamber Temperature (Fast)4.4.47 M142: Holding Pressure4.4.48 M143: Maximum hot-end temperature4.4.49 M160: Number of mixed materials4.4.50 M203: Record Z adjustment4.4.51 M226: Gcode Initiated Pause4.4.52 M227: Enable Automatic Reverse and Prime4.4.53 M228: Disable Automatic Reverse and Prime4.4.54 M229: Enable Automatic Reverse and Prime4.4.55 M230: Disable / Enable Wait for Temperature Change4.4.56 M240: Start conveyor belt motor4.4.57 M241: Stop conveyor belt motor4.4.58 M245: Start cooler4.4.59 M246: Stop cooler4.4.60 M300: Play beep sound4.4.61 T: Select Tool5 Proposed EEPROM configuration codes6 Replies from the RepRap machine to the host computer7 Proposal for sending multiple lines of G-code 7.1 Problem to solveIntroduction This page describes the G Codes that the RepRap firmware uses and how they work. The list of what can be done is extensible. But check this page first, and add your extension here first before you implement it. A typical piece of GCode as sent to a RepRap machine might look like this: N3 T0*57N4 G92 E0*67N5 G28*22N6 G1 F1500.0*82N7 G1 X2.0 Y2.0 F3000.0*85N8 G1 X3.0 Y3.0*33The meaning of all those symbols and numbers (and more) is explained below. TO find out which specific gcode/s are implemented in any given firmware, please see the Firmware_features page. (For the technically minded, the end of line is marked by both a and a . If you want to manually enter GCodes in your reprap using the Arduino Serial interface, make sure to select Both NL & CR on the bottom of the screen.) This isnt accurate, firmware accepts single as well as single , or combinations thereof. Hosts should accepts all four combinations as well. -Traumflug 09:34, 20 April 2011 (UTC) RepRap G Code Fields This section explains the letter-preceded fields. The numbers in the fields are represented by nnn. Numbers can be integers, or can contain a decimal point, depending on context. For example an X coordinate can be integer (X175) or fractional (X17.62), whereas trying to select extruder number 2.76 would make no sense. Letter Meaning Gnnn Standard GCode command, such as move to a point Mnnn RepRap-defined command, such as turn on a cooling fan Tnnn Select tool nnn. In RepRap, tools are extruders Snnn Command parameter, such as the voltage to send to a motor Pnnn Command parameter, such as a time in milliseconds Xnnn An X coordinate, usually to move to Ynnn A Y coordinate, usually to move to Znnn A Z coordinate, usually to move to Innn Parameter - not currently used Jnnn Parameter - not currently used Fnnn Feedrate in mm per minute. (Speed of print head movement) Rnnn Parameter - not currently used Qnnn Parameter - not currently used Ennn Length of extrudate in mm. This is exactly like X, Y and Z, but for the length of filament to extrude. It is common for newer stepper based systems to interpret . Better: Skeinforge 40 and up interprets this as the absolute length of input filament to consume, rather than the length of the extruded output. Nnnn Line number. Used to request repeat transmission in the case of communications errors. *nnn Checksum. Used to check for communications errors. Comments G Code comments: N3 T0*57 ;This is a commentN4 G92 E0*67; So is thisN5 G28*22Will be ignored by RepRap, as will blank lines. But its better to strip these out in the host computer before the lines are sent. This saves bandwidth. Individual commands Checking N and * Example: N123 .G Code in here. *71 These are the line number and the checksum. The RepRap firmware checks the checksum against a locally-computed value and, if they differ, requests a repeat transmission of the line of the given number. You can leave both of these out - RepRap will still work, but it wont do checking. You have to have both or neither though. The checksum cs for a GCode string cmd (including its line number) is computed by exor-ing the bytes in the string up to and not including the * character as follows: int cs = 0;for(i = 0; cmdi != * & cmdi != NULL; i+) cs = cs cmdi;cs &= 0xff; / Defensive programming.and the value is appended as a decimal integer to the command after the * character. The RepRap firmware expects line numbers to increase by 1 each line, and if that doesnt happen it is flagged as an error. But you can reset the count using M110 (see below). Buffered G Commands The RepRap firmware stores these commands in a ring buffer internally for execution. This means that there is no (appreciable) delay while a command is acknowledged and the next transmitted. In turn, this means that sequences of line segments can be plotted without a dwell between one and the next. As soon as one of these buffered commands is received it is acknowledged and stored locally. If the local buffer is full, then the acknowledgment is delayed until space for storage in the buffer is available. This is how flow control is achieved. G0: Rapid move Example: G0 X12 In this case move rapidly to X = 12 mm. In fact, the RepRap firmware uses exactly the same code for rapid as it uses for controlled moves (see G1 below), as - for the RepRap machine - this is just as efficient as not doing so. (The distinction comes from some old machine tools that used to move faster if the axes were not driven in a straight line. For them G0 allowed any movement in space to get to the destination as fast as possible.) G1: Controlled move Example: G1 X90.6 Y13.8 E22.4 Go in a straight line from the current (X, Y) point to the point (90.6, 13.8), extruding material as the move happens from the current extruded length to a length of 22.4 mm. RepRap does subtle things with feedrates. Thus: G1 F1500G1 X90.6 Y13.8 E22.4Will set a feedrate of 1500 mm/minute, then do the move described above at that feedrate. But G1 F1500G1 X90.6 Y13.8 E22.4 F3000Will set a feedrate of 1500 mm/minute, then do the move described above accelerating to a feedrate of 3000 mm/minute as it does so. The extrusion will accelerate along with the X, Y movement so everything stays synchronized. RepRap thus treats feedrate as simply another variable (like X, Y, Z, and E) to be linearly interpolated. This gives complete control over accelerations and decelerations in a way that ensures that everything moves together and the right volume of material is extruded at all points. The first example shows how to get a constant-speed movement. The second how to accelerate or decelerate. Thus G1 F1500G1 X90.6 Y13.8 E22.4 F3000G1 X80 Y20 E36 F1500Will do the first movement accelerating as before, and the second decelerating from 3000 mm/minute back to 1500 mm/minute. To reverse the extruder by a given amount (for example to reduce its internal pressure while it does an in-air movement so that it doesnt dribble) simply use G1 to send an E value that is less than the currently extruded length. G28: Move to Origin Example: G28 This causes the RepRap machine to move back to its X, Y and Z zero endstops, a process known as homing. It does so accelerating, so as to get there fast. But when it arrives it backs off by 1 mm in each direction slowly, then moves back slowly to the stop. This ensures more accurate positioning. If you add coordinates, then just the axes with coordinates specified will be zeroed. Thus G28 X0 Y72.3 will zero the X and Y axes, but not Z. The actual coordinate values are ignored. Unbuffered G commands The following commands are not buffered. When one is received it is stored, but it is not acknowledged to the host until the buffer is exhausted and then the command has been executed. Thus the host will pause at one of these commands until it has been done. Short pauses between these commands and any that might follow them do not affect the performance of the machine. G4: Dwell Example: G4 P200 In this case sit still doing nothing for 200 milliseconds. During delays the state of the machine (for example the temperatures of its extruders) will still be preserved and controlled. G20: Set Units to Inches Example: G20 Units from now on are in inches. G21: Set Units to Millimeters Example: G21 Units from now on are in millimeters. (This is the RepRap default.) G90: Set to Absolute Positioning Example: G90 All coordinates from now on are absolute relative to the origin of the machine. (This is the RepRap default.) G91: Set to Relative Positioning Example: G91 All coordinates from now on are relative to the last position. G92: Set Position Example: G92 X10 E90 Allows programming of absolute zero point, by reseting the current position to the values specified. This would set the machines X coordinate to 10, and the extrude coordinate to 90. No physical motion will occur. Unbuffered M and T commands M0: Stop Example: M0 The RepRap machine finishes any moves left in its buffer, then shuts down. All motors and heaters are turned off. It can be started again by pressing the reset button on the master microcontroller. See also M112. M17: Enable/Power all stepper motorsExample: M17 M18: Disable all stepper motorsExample: M18 Disables stepper motors and allows axis to move freely. M20: List SD card Example: M20 All files in the root folder of the SD card are listed to the serial port. This results in a line like: ok Files: SQUARE.G,SQCOM.G, The trailing comma is optional. Note that file names are returned in upper case, but - when sent to the M23 command (below) they must be in lower case. This seems to be a function of the SD software. Go figure. M21: Initialise SD card Example: M21 The SD card is initialised. If an SD card is loaded when the machine is switched on, this will happen by default. SD card must be initialised for the other SD functions to work. M22: Release SD card Example: M22 SD card is released and can be physically removed. M23: Select SD file Example: M23 filename.gco The file specified as filename.gco (8.3 naming convention is supported) is selected ready for printing. M24: Start/resume SD print Example: M24 The machine prints from the file selected with the M23 command. M25: Pause SD print Example: M25 The machine pause printing at the current position within the file selected with the M23 command. M26: Set SD position Example: M26 Set SD position in bytes (M26 S12345). M27: Report SD print status Example: M27 Report SD print status. M28: Begin write to SD card Example: M28 filename.gco File specified by filename.gco is created (or overwritten if it exists) on the SD card and all subsequent commands sent to the machine are written to that file.M29: Stop writing to SD card Example: M29 filename.gco File opened by M28 command is closed, and all subsequent commands sent to the machine are executed as normal. M40: Eject If your RepRap machine can eject the parts it has built off the bed, this command executes the eject cycle. This usually involves cooling the bed and then performing a sequence of movements that remove the printed parts from it. The X, Y and Z position of the machine at the end of this cycle are undefined (though they can be found out using the M114 command, q.v.). See also M240 and M241 below. M41: Loop Example: M41 If the RepRap machine was building a file from its own memory such as a local SD card (as opposed to a file being transmitted to it from a host computer) this goes back to the beginning of the file and runs it again. So, for example, if your RepRap is capable of ejecting parts from its build bed then you can set it printing in a loop and it will run and run. Use with caution - the only things that will stop it are: 1.When you press the reset button, 2.When the build material runs out (if your RepRap is set up to detect this), and 3.When theres an error (such as a heater failure). M42: Stop on material exhausted Example: M42 If your RepRap can detect when its material runs out, this decides the behaviour when that happens. The X and Y axes are zeroed (but not Z), and then the machine shuts all motors and heaters off. You have to press reset to reactivate the machine. In other words, it parks itself and then executes an M0 command (q.v.). M43: Stand by on material exhausted Example: M43 If your RepRap can detect when its material runs out, this decides the behaviour when that happens. The X and Y axes are zeroed (but not Z), and then the machine shuts all motors and heaters off except the heated bed, the temperature of which is maintained. The machine will still respond to G and M code commands in this state. M80: ATX Power On Example: M80 Turns on the ATX power supply from standby mode to fully operational mode. No-op on electronics without standby mode. Note: some firmwares, like Teacup, handle power on/off automatically, so this is redundant there. M81: ATX Power Off Example: M81 Turns off the ATX power supply. Counterpart to M80. M84: Stop idle hold Example: M84 Stop the idle hold on all axis and extruder. In some cases the idle hold causes annoying noises, which can be stopped by disabling the hold. Be aware that by disabling idle hold during printing, you will get quality issues. This is recommended only in between or after printjobs. M92: Set axis_steps_per_unit Example: M92 X Sprinter and Marlin Allows programming of steps per unit of axis till the electronics are reset for the specified axis. Very useful for calibration. M101 Turn extruder 1 on Forward Depreciated. see MCodeReference. Was used by older style DC extruders. See also Bits From Bytes M102 Turn extruder 1 on Reverse Depreciated. see MCodeReference. Was used by older style DC extruders. See also Bits From Bytes M103 Turn all extruders off Depreciated. see MCodeReference. Was used by older style DC extruders. See also Bits From Bytes M104: Set Extruder Temperature (Fast) Example: M104 S190 Set the temperature of the current extruder to 190oC and return control to the host immediately (i.e. before that temperature has been reached by the extruder). See also M109. M105: Get Extruder Temperature Example: M105 Request the temperature of the current extruder and the build base in degrees Celsius. The temperatures are returned to the host computer. For example, the line sent to the host in response to this command looks like ok T:201 B:117 M106: Fan On Example: M106 S127 Turn on the cooling fan at half speed. Optional parameter S declares the PWM value (0-255) M107: Fan Off Example: M107 Turn off the cooling fan (if any). M108: Set Extruder Speed Sets speed of extruder motor. (Deprecated in current firmware, see M113) M109: Set Extruder Temperature Example: M109 S190 Set the temperature of the current extruder to 190oC and wait for it to reach that value before sending an acknowledgment to the host. In fact the RepRap firmware waits a while after the temperature has been reached for the extruder to stabilise - typically about 40 seconds. This can be changed by a parameter in the firmware configuration file when the firmware is compiled. See also M104 and M116. M110: Set Current Line Number Example: N123 M110 Set the current line number to 123. Thus the expected next line after this command will be 124. M111: Set Debug Level Example: M111 S6 Set the level of debugging information transmitted back to the host to level 6. The level is the OR of three bits: #define DEBUG_ECHO (10)#define DEBUG_INFO (11)#define DEBUG_ERRORS (12)Thus 6 means send information and errors, but dont echo commands. (This is the RepRap default.) M112: Emergency Stop Example: M112 Any moves in progress are immediately terminated, then RepRap shuts down. All motors and heaters are turned off. It can be started again by pressing the reset button on the master microcontroller. See also M0. M113: Set Extruder PWM Example: M113 Set the PWM for the currently-selected extruder. On its own this command sets RepRap to use the on-board potentiometer on the extruder controller board to set the PWM for the currently-selected extruders stepper power. With an S field: M113 S0.7 it causes the PWM to be set to the S value (70% in this instance). M113 S0 turns the extruder off, until an M113 command other than M113 S0 is sent. M114: Get Current Position Example: M114 This causes the RepRap machine to report its current X, Y, Z and E coordinates to the host. For example, the machine returns a string such as: ok C: X:0.00 Y:0.00 Z:0.00 E:0.00 M115: Get Firmware Version and Capabilities Example: M115 Request the Firmware Version and Capabilities of the current microcontroller The details are returned to the host computer as key:value pairs separated by spaces and terminated with a linefeed. sample data from firmware: ok PROTOCOL_VERSION:0.1 FIRMWARE_NAME:FiveD FIRMWARE_URL:http%3A/reprap.org MACHINE_TYPE:Mendel EXTRUDER_COUNT:1This M115 code is inconsistently implemented, and should not be relied upon to exist, or output correctly in all cases. An initial implementation was committed to svn for the FiveD Reprap firmware on 11 Oct 2010. Work to more formally define protocol versions is currently (October 2010) being discussed. See M115_Keywords for one draft set of keywords and their meanings. M116: Wait Example: M116 Wait for all temperatures and other slowly-changing variables to arrive
展开阅读全文
相关资源
正为您匹配相似的精品文档
相关搜索

最新文档


当前位置:首页 > 图纸专区 > 大学资料


copyright@ 2023-2025  zhuangpeitu.com 装配图网版权所有   联系电话:18123376007

备案号:ICP2024067431-1 川公网安备51140202000466号


本站为文档C2C交易模式,即用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。装配图网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知装配图网,我们立即给予删除!