Please enable JavaScript to view this site.

MovingCap Ethernet Drives - Software Manual

Navigation: » No topics above this level «

MovingCap IO

Scroll Prev Top Next More

Depending on the motor variant and options, the MovingCap Ethernet drives offer

up to 10x digital inputs 24V DC (IN1-IN10)

up to 4x digital outputs 24V DC (OUT1-4)

The connection/pin assignment can be found in the Connections section.

The current status of the inputs/outputs is displayed at the bottom right of the web page:
MovingCAP_MC349_Eth_status_IO

A digit after "I" means that this input number (IN..) is active.
A digit after "O" means that this output number (OUT..) is active.
In the picture above, outputs OUT2 and OUT3 are high, all inputs are low.

Software access to the digital inputs and outputs is via the following CiA 402 objects in the CANopen object dictionary:

Index

Subindex

Type

Type Access

Type Access Description

Example via web interface/RefGo

60FDh

00h

unsigned16

R

Physical inputs

IN1 = Bit16 (00010000h)
IN2 = Bit17 (00020000h)
IN3 = Bit18 (00040000h)
IN4 = Bit19 (00080000h)
...

RefGo Command:
OR 60FD,0
 
RefGo Response:
OR 60FD,0,131072
 
--> 24V are present at IN2 (IN2=high)

60FEh

01h

unsigned16

R/W

Physical outputs

OUT1 = Bit16 (00010000h, decimal 65536)
OUT2 = Bit17 (00020000h, decimal 131072)
...

RefGo Command:
OW 60FE,1,65536
RefGo Response:
OW 60FE,1,65536,OK
--> set OUT1 = high,
(OUT2.. = low)

RefGo Command:
OW 60FE,1,393216
RefGo Response:
OW 60FE,1,393216,OK
--> set OUT2 = high, OUT3 = high
(OUT1 or OUT4) = low

NOTE: The assignment of the inputs and outputs to objects 60FDh.00h and 60FEh.01h with bit numbers >= 16 ("manufacturer-specific") corresponds to the CiA 402 specification.