久久久久久久999_99精品久久精品一区二区爱城_成人欧美一区二区三区在线播放_国产精品日本一区二区不卡视频_国产午夜视频_欧美精品在线观看免费

 找回密碼
 立即注冊

QQ登錄

只需一步,快速開始

搜索
查看: 11583|回復: 1
打印 上一主題 下一主題
收起左側

Arduino機械學習筆記06(CNC編程 G code)

[復制鏈接]
跳轉到指定樓層
樓主
*****************************
G code

CNC 的語言
*****************************


在學習 GRBL 過程中,遇到了很多新知識,CNC 編程對我來說也是需要補充學習的。

首先,坐標系統,

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


可用來設定絕對0點,或者重置現在的位置到規定的坐標。

沒有指定坐標的G92命令會重置所有軸到0 ‘

*********************************

G00



For rapid linear motion, program G0 X… Y… Z… A… B… C…, where all the axis words are
optional, except that at least one must be used. The G0 is optional if the current motion mode is
G0. This will produce coordinated linear motion to the destination point at the current traverse
rate (or slower if the machine will not go that fast). It is expected that cutting will not take place
when a G0 command is executing.

******************************

G01 可控移動





這個G01 仿真有點錯誤(坐標系),不過不影響理解。商用仿真還沒學會。

******************************

G0203









**********************************

內容比較多,先開始再說吧。

*****************************
GROUP1 一覽

在 GRBL 中的代碼實現
*****************************


按照順序,已經理解 G00 G01 G02 G03命令后下一個要理解的命令是 G80,

原因是他們 是同一組的。

group 1= {G0, G1, G2, G3, G38.2, G80, G81, G82, G83, G84, G85, G86, G87, G88, G89} motion

因為GRBL 只是實現了部分命令,

group 1= {G0, G1, G2, G3, G80}


Cancel Modal Motion — G80

Program G80 to ensure no axis motion will occur. It is an error if:
• Axis words are programmed when G80 is active, unless a modal group 0 G code is programmed which uses axis words.

g80是取消固定循環指令。網上搜了一下 華中數控,G80不是這個功能,看來華中數控并沒有遵循RS274規范。

*******************************

在GRBL 中(gcode.c)的實現,

    switch(letter) {
      case 'G':
       // Set modal group values
        switch(int_value) {

          case 0: case 1: case 2: case 3: case 80: group_number = MODAL_GROUP_1; break;
           。。。。

遇到 G0, G1, G2, G3, G80 命令時,把 變量 group_number 賦值 MODAL_GROUP_1。

然后,再具體指令,

        switch(int_value) {
          case 0: gc.motion_mode = MOTION_MODE_SEEK; break;
          case 1: gc.motion_mode = MOTION_MODE_LINEAR; break;
          case 2: gc.motion_mode = MOTION_MODE_CW_ARC; break;
          case 3: gc.motion_mode = MOTION_MODE_CCW_ARC; break;
          。。。。
          case 80: gc.motion_mode = MOTION_MODE_CANCEL; break;
          。。。

設置 相應 的 gc.motion_mode 變量。

剩下是如何具體執行的,可能要把 gcode.c 看完才可以理解。

其中,gc 是一個結構體,
結構
typedef struct {
  uint8_t status_code;             // Parser status for current block

  uint8_t motion_mode;             // {G0, G1, G2, G3, G80}

  uint8_t inverse_feed_rate_mode;  // {G93, G94}

  uint8_t inches_mode;             // 0 = millimeter mode, 1 = inches mode {G20, G21}

  uint8_t absolute_mode;           // 0 = relative motion, 1 = absolute motion {G90, G91}

  uint8_t program_flow;            // {M0, M1, M2, M30}

  int8_t spindle_direction;        // 1 = CW, -1 = CCW, 0 = Stop {M3, M4, M5}

  uint8_t coolant_mode;            // 0 = Disable, 1 = Flood Enable {M8, M9}

  float feed_rate;                 // Millimeters/min

//  float seek_rate;                 // Millimeters/min. Will be used in v0.9 when axis independence is installed
  float position[3];               // Where the interpreter considers the tool to be at this point in the code
  uint8_t tool;
//  uint16_t spindle_speed;          // RPM/100

  uint8_t plane_axis_0,
          plane_axis_1,
          plane_axis_2;            // The axes of the selected plane  
  uint8_t coord_select;            // Active work coordinate system number. Default: 0=G54.
  float coord_system[N_AXIS];      // Current work coordinate system (G54+). Stores offset from absolute machine

                                   // position in mm. Loaded from EEPROM when called.
  float coord_offset[N_AXIS];      // Retains the G92 coordinate offset (work coordinates) relative to
                                   // machine zero in mm. Non-persistent. Cleared upon reset and boot.        
} parser_state_t;


這個結構體包含的指令 就是要理解的,不包含的則不增加學習負擔。
*****************************

另外,GRBL 沒有實現 刀具補償指令,是個大遺憾。好消息是,學習難度小了些。

分享到:  QQ好友和群QQ好友和群 QQ空間QQ空間 騰訊微博騰訊微博 騰訊朋友騰訊朋友
收藏收藏4 分享淘帖 頂 踩
回復

使用道具 舉報

沙發
ID:304387 發表于 2018-4-10 09:29 | 只看該作者
好資料,分享了,謝謝
回復

使用道具 舉報

您需要登錄后才可以回帖 登錄 | 立即注冊

本版積分規則

小黑屋|51黑電子論壇 |51黑電子論壇6群 QQ 管理員QQ:125739409;技術交流QQ群281945664

Powered by 單片機教程網

快速回復 返回頂部 返回列表
主站蜘蛛池模板: 国产精品污www在线观看 | 免费观看黄色一级片 | 91欧美精品成人综合在线观看 | 日韩在线一区二区 | 黄视频国产 | m豆传媒在线链接观看 | 国产婷婷精品av在线 | 色橹橹欧美在线观看视频高清 | 欧美一区二区三区在线看 | 狠狠操天天操 | 日韩欧美三级 | 国产精品久久久久久久久久 | 欧美久久精品一级c片 | 成人午夜精品 | 久久国产精品视频 | 国产1区| 亚洲成人一区二区 | 香蕉视频在线播放 | 一区二区三区视频在线 | 久久精品国产99国产精品 | 久久久www成人免费精品张筱雨 | 亚洲高清视频一区二区 | 玖玖玖av| 亚洲免费在线 | 超碰精品在线观看 | 日韩视频免费 | 超碰97人人人人人蜜桃 | 成人在线视频观看 | 香蕉视频黄色 | 91伊人| 日本一区视频在线观看 | 99国产精品99久久久久久 | 在线男人天堂 | 欧美精品一区二区三区在线 | 国产精品一区二区久久精品爱微奶 | 久久久久久国 | 国产91在线 | 亚洲 | 日韩欧美三级电影在线观看 | 天堂亚洲 | 久久亚洲国产精品 | 热久久999 |