工控網(wǎng)首頁
>

應(yīng)用設(shè)計(jì)

>

EtherCAT運(yùn)動(dòng)控制器在數(shù)控加工手輪隨動(dòng)中的應(yīng)用

EtherCAT運(yùn)動(dòng)控制器在數(shù)控加工手輪隨動(dòng)中的應(yīng)用


01
手輪作用及原理 

2.控制器手輪接口MPG定義

接口

引腳號(hào)

信號(hào)

說明

微信圖片_20230510091048.png 

1

H-5V

5V電源輸出正極,專為手輪供電

2

HA-

編碼器A相信號(hào)(IN40)

3

HB-

編碼器B相信號(hào)(IN41)

4

HEMGN

緊急停止信號(hào)(IN51)

5

NC

懸空

6

HX1

選擇X1倍率(IN42)

7

HX10

選擇X10倍率(IN43)

8

HX100

選擇X100倍率(IN44)

9

HSU

軸選3(IN48)

10

HSV

軸選4(IN49)

11

EGND

5V電源輸出負(fù)極,信號(hào)公共端

12

HSW

軸選5(IN50)

13

HSZ

軸選2(IN47)

14

HSY

軸選1(IN46)

15

HSX

軸選0(IN45)

注意:

1.5V電源輸出僅為手輪供電,切勿為其他設(shè)備供電。

2.該接口中的所有信號(hào)均為數(shù)字輸入信號(hào),編號(hào)為IN(40-51)。

3.手輪接線參考

企業(yè)微信截圖_20230510085330.png

4.注意事項(xiàng)
手輪編碼器軸接口接線原理如上圖所示,手輪廠家的設(shè)計(jì)多種多樣,請(qǐng)先查看手輪內(nèi)部的設(shè)計(jì)圖后與運(yùn)動(dòng)控制器確認(rèn)正確后謹(jǐn)慎接線; 請(qǐng) 使用雙絞屏蔽線,尤其是環(huán)境惡劣的場(chǎng)合,務(wù)必使屏蔽層充分接地。



04
程序配置 

1.參考以上 手輪接線示意圖正確連接手輪和控制器;

2.上電后請(qǐng)選EtherNET、RS232、RS485任一種接口連接ZDevelop;

3. 配置軸號(hào):該控制器手輪接口無可用默認(rèn)AXIS軸號(hào)(映射需避開脈沖軸號(hào)),必須進(jìn)行重映射,操作步驟如下:
企業(yè)微信截圖_20230510085344.png
4. 配置IO:根據(jù)需要賦予軸選(HSX,HSY,HSZ,HSU)和倍率(HX1,HX10,HX100)以及緊急停止(HEMGN)功能;這些信號(hào)本質(zhì)為數(shù)字輸入信號(hào),有固定的編號(hào)(參見上節(jié)) ,但無固定的功能,需要ZDevelop開發(fā);其名稱為推薦配置的功能,軸選即為CONNECT同步運(yùn)動(dòng)的被連接軸,倍率即CONNECT比率。
5.完成以上配置即可開始使用手輪。

程序示例如下,運(yùn)行下方程序后,便可實(shí)現(xiàn)手輪的控制。

'不同控制器型號(hào),手輪軸號(hào),倍率和軸選擇IN編號(hào)不一樣,參考控制器使用手冊(cè),本例程使用控制器型號(hào)為ZMC408CE
'不同手輪控制軸數(shù)不一樣,本例程控制軸數(shù)為6個(gè)

'軸號(hào)設(shè)置
global const axis_X  = 0    'X軸
global const axis_Y  = 1    'Y軸
global const axis_Z  = 2    'Z軸
global const axis_U  = 3    'U軸
global const axis_V  = 4    'V軸
global const axis_W  = 5    'W軸
global const def_R      = 8    '手輪默認(rèn)軸號(hào)
global const axis_R  = 10    '手輪重新映射軸號(hào) 

'倍率IN編號(hào)設(shè)置
const io_Handlow = 42  '1倍率
const io_Handmid = 43  '10倍率
const io_Handhigh = 44  '100倍率

'軸選擇IN編號(hào)設(shè)置 
const io_HandX = 45    '手輪X軸
const io_HandY = 46    '手輪Y軸
const io_HandZ = 47     '手輪Z軸
const io_HandU = 48   '手輪U軸
const io_HandV = 49     '手輪V軸
const io_HandW = 50   '手輪W軸

'緊急停止信號(hào)IN編號(hào)設(shè)置
const io_HandEMGN = 51   '急停
global dim conflag      '手輪連接軸標(biāo)記
conflag = -1
ATYPE(def_R) = 0 '還原軸 8 軸類型
ATYPE(axis_R) = 0 '還原軸 10 軸類型
AXIS_ADDRESS(axis_R) = (-1<<16)+ def_R '將 MPG 手脈軸地址映射到軸 10
ATYPE(axis_R) = 3 '設(shè)置手脈軸軸類型為正交編碼器類型
UNITS(axis_R) = 1 '設(shè)置手脈軸脈沖當(dāng)量脈沖為單位
While 1
  if  in(io_handX) = on  then
    if in(io_handlow) = on then
      connect(1, axis_R) axis(axis_X)  '鏈接到軸X, 倍率 1
    elseif in(io_handmid) = on then
      connect(10, axis_R) axis(axis_X)  '鏈接到軸X, 倍率 10
    elseif in(io_handhigh) = on then
      connect(100, axis_R) axis(axis_X)  '鏈接到軸X, 倍率 100
    endif
    conflag = axis_X
  elseif  in(io_handY) = on  then
    if in(io_handlow) = on then
      connect(1, axis_R) axis(axis_Y)  
    elseif in(io_handmid) = on then
      connect(10, axis_R) axis(axis_Y)  
    elseif in(io_handhigh) = on then
      connect(100, axis_R) axis(axis_Y)  
    endif
    conflag = axis_Y
  elseif  in(io_handZ) = on  then
    if in(io_handlow) = on then
      connect(1, axis_R) axis(axis_Z)
    elseif in(io_handmid) = on then
      connect(10, axis_R) axis(axis_Z)  
    elseif in(io_handhigh) = on then
      connect(100, axis_R) axis(axis_Z)  
    end if
    conflag = axis_Z
  elseif  in(io_handU) = on  then
    if in(io_handlow) = on then
      connect(1, axis_R) axis(axis_U)
    elseif in(io_handmid) = on then
      connect(10, axis_R) axis(axis_U)  
    elseif in(io_handhigh) = on then
      connect(100, axis_R) axis(axis_U)  
    endif
    conflag = axis_U
  elseif  in(io_handV) = on  then
    if in(io_handlow) = on then
      connect(1, axis_R) axis(axis_V)
    elseif in(io_handmid) = on then
      connect(10, axis_R) axis(axis_V)  
    elseif in(io_handhigh) = on then
      connect(100, axis_R) axis(axis_V)  
    endif
    conflag = axis_V
  elseif  in(io_handW) = on  then
    if in(io_handlow) = on then
      connect(1, axis_R) axis(axis_W)
    elseif in(io_handmid) = on then
      connect(10, axis_R) axis(axis_W)  
    elseif in(io_handhigh) = on then
      connect(100, axis_R) axis(axis_W)  
    endif
    conflag = axis_W
  elseif conflag <> -1 then    '取消連接
    cancel(2) axis(conflag)
    conflag = -1
  elseif   in(io_HandEMGN) = off  then
      RAPIDSTOP(2)
  endif 
Wend

本文由正運(yùn)動(dòng)技術(shù)原創(chuàng),歡迎大家轉(zhuǎn)載,共同學(xué)習(xí),一起提高中國(guó)智能制造水平。文章版權(quán)歸正運(yùn)動(dòng)技術(shù)所有,如有轉(zhuǎn)載請(qǐng)注明文章來源。

正運(yùn)動(dòng)技術(shù)專注于運(yùn)動(dòng)控制技術(shù)研究和通用運(yùn)動(dòng)控制軟硬件產(chǎn)品的研發(fā),是國(guó)家級(jí)高新技術(shù)企業(yè)。正運(yùn)動(dòng)技術(shù)匯集了來自華為、中興等公司的優(yōu)秀人才,在堅(jiān)持自主創(chuàng)新的同時(shí),積極聯(lián)合各大高校協(xié)同運(yùn)動(dòng)控制基礎(chǔ)技術(shù)的研究,是國(guó)內(nèi)工控領(lǐng)域發(fā)展最快的企業(yè)之一,也是國(guó)內(nèi)少有、完整掌握運(yùn)動(dòng)控制核心技術(shù)和實(shí)時(shí)工控軟件平臺(tái)技術(shù)的企業(yè)。主要業(yè)務(wù)有:運(yùn)動(dòng)控制卡_運(yùn)動(dòng)控制器_EtherCAT運(yùn)動(dòng)控制卡_EtherCAT控制器_運(yùn)動(dòng)控制系統(tǒng)_視覺控制器__運(yùn)動(dòng)控制PLC_運(yùn)動(dòng)控制_機(jī)器人控制器_視覺定位_XPCIe/XPCI系列運(yùn)動(dòng)控制卡等等。

審核編輯(
王靜
)
投訴建議

提交

查看更多評(píng)論
其他資訊

查看更多

正運(yùn)動(dòng)全國(guó)產(chǎn)EtherCAT運(yùn)動(dòng)控制器ZMC432H用戶手冊(cè)

正運(yùn)動(dòng)全國(guó)產(chǎn)EtherCAT運(yùn)動(dòng)控制器ZMC432H

正運(yùn)動(dòng)技術(shù)運(yùn)動(dòng)控制器如何快速實(shí)現(xiàn)單軸/多軸同步跟隨功能?

正運(yùn)動(dòng)ECI1408運(yùn)動(dòng)控制卡用戶手冊(cè)

正運(yùn)動(dòng)機(jī)器視覺運(yùn)動(dòng)控制一體機(jī)VPLC710