0% found this document useful (0 votes)
6 views20 pages

Dataliner Message Display DL20 PLC Applications: Allen-Bradley

This document provides guidance on interfacing the DL20 message display with PLC-2 and PLC-5 programmable controllers, including programming examples and connection diagrams. It emphasizes the single-direction communication of the DL20, which is suitable for non-critical display applications, and outlines specific configurations and rung descriptions for triggering messages. The document also details methods for transferring variable data to the DL20 and includes ladder program examples for both PLC-2 and PLC-5 systems.

Uploaded by

peterson_msc5
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views20 pages

Dataliner Message Display DL20 PLC Applications: Allen-Bradley

This document provides guidance on interfacing the DL20 message display with PLC-2 and PLC-5 programmable controllers, including programming examples and connection diagrams. It emphasizes the single-direction communication of the DL20, which is suitable for non-critical display applications, and outlines specific configurations and rung descriptions for triggering messages. The document also details methods for transferring variable data to the DL20 and includes ladder program examples for both PLC-2 and PLC-5 systems.

Uploaded by

peterson_msc5
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 20

ALLEN-BRADLEY

Dataliner Message Display


DL20 PLC Applications
Application Note

Overview This document provides examples of interfacing a DL20 with PLC-2 and
PLC-5 Programmable Controllers through the DL20 parallel port.
Programming examples and connection diagrams show how to transfer
message triggers and variable data from 1771 I/O modules to the DL20
parallel port.

The examples and diagrams used in this appendix are included solely for
illustrative purposes.

ATTENTION: The DL20 has single direction communication


and should be used only for non-critical display applications.
! Single direction communication does not provide verification that
messages from the programmable controller have been received
and displayed by the DL20.

PLC-2 The PLC-2 processor configuration for both examples is listed below. This
Programming Examples configuration may vary for different applications.

1. A 1770-T3 Industrial Terminal is used.

2. The “SEARCH 50” command configures the data table for 1 data table
block and 2 I/O racks. The Mini PLC-2/15 or Mini PLC-2/05 processors
automatically default to the 2 I/O rack configuration.

3. The output modules (2) are in Rack 1, module group 0 (word address
010).

4. The DL20 configuration is defined separately for each program example.

• high true logic


• BCD messages / variable data
• time driven
• DC inputs
• scan = 4, debounce = 1
Installation Data
DataLiner Message Displays
DL20 PLC Applications

PLC-2 Triggering Simple Messages (PLC-2)


Programming Examples
Figure 1 illustrates how individual inputs can trigger corresponding
messages.

Figure 1
Triggering Messages Using Individual Inputs (PLC-2)

057 010
G PUT Rung 1
001 001

112 060 010


G PUT Rung 2
00 020 001

112 061 010


G PUT Rung 3
01 021 001

112 062 010


G PUT Rung 4
02 022 001

If two or more inputs are true at the same time, the rung closest to the end of
the ladder diagram has priority and only this message is triggered during the
program scan.

When no inputs are true, the display clears since the 1st rung shown always
triggers special message #1 if none of the rungs after it are true. Special
message #1 clears the display. If your application requires that the last
message displayed remains displayed indefinitely, do not program the first
rung in this example. The DL20 Auto Clear message feature must be
disabled for this type of operation.

In this example, one rung is required for each unique message triggered.

The DL20 examines 10 bits (D0-D9) on the parallel port when a message
number is strobed in. If binary is selected, a range of message numbers
from 1 to 1022 is allowed. If BCD is selected, a range of message numbers
from 1 to 399 is allowed.

2
Installation Data
Dataliner Message Displays
DL20 PLC Applications

Rung Descriptions (Figure 1)


Rung 1
Triggers special message #1 to clear the display if no other messages are
being triggered in a later rung. A constant 1 is stored in address 057.

Rung 2
Triggers message 20 if input 112:00 is true and if rungs 3 and 4 are not true.

Rung 3
Triggers message 21 if input 112:01 is true and if rung 4 is not true.

Rung 4
Triggers message 22 if input 112:02 is true.

The ladder diagram (Figure 1) provides a priority type operation. For


example, rung 4 (message 22) has priority over rung 3 (message 21) because
the later rung (if enabled) will write over any previous message number
placed into word 010.

Bits 14 and 15 of words 057 through 062 must be set. The message numbers
stored in these words are entered while programming the GET instructions as
described below. Next, bit 14 and 15 are set using the “SEARCH 53”
command. Bits 14 and 15 correspond to the strobe terminals MS0 and MS1
on the DL20. Any other available bit addresses can be used for strobes (MS0
and MS1), however, the module outputs must be wired accordingly.

Get and Put Instructions (PLC-2)


The GET instruction transfers 16 bits of the designated word and places it in
the PUT instructions designated word. However, only the lowest 12 bits are
displayed on the industrial terminal in BCD form (such as 001).

The GET instructions shown in Figure 1 have two additional bits set which
are not visible on the industrial terminal ladder diagram. These are bits 14
and 15. These outputs are connected to the MS0 and MS1 strobe bits on the
DL20 parallel port.

These outputs must be turned on along with any message number being
triggered. In this example, the message numbers stored in addresses 057,
060, 061, and 062 must also include bits 14 and 15 being set in each of those
words. This is done using the SEARCH 53 Data Manipulation instruction
after entering the GET instruction and the message number.

3
Installation Data
DataLiner Message Displays
DL20 PLC Applications

PLC-2 Triggering Messages with Variable Data (PLC-2)


Programming Examples
This example illustrates how a message with a variable data value from a
PLC-2 Programmable Controller can be displayed on a DL20.

There are 10 data lines (D0-D9) and 2 strobe lines (MS0 and MS1) on the
DL20. If both MS0 and MS1 are high, it indicates to the DL20 that the value
present on the data lines D0-D9 is a message number to be triggered. At this
point all 10 data lines (D0-D9) are examined. If binary message data is
selected in the DL20 menu, the range is 1 to 1022. If BCD message data is
selected, the range is 1 to 399.

The DL20 displays variable data from the programmable controller within a
range of 0 to ±32, 767 binary or 0 to 9999 BCD. Because these are 16 bit
data values and the DL20 has only 10 data lines, each variable must be
strobed into the DL20 in two parts, 8 bits at a time. First the high byte is
strobed in. This is indicated by setting the strobe bit MS0 low and MS1
high. Next the low byte (least significant data) is strobed in to the DL20.
This is indicated by setting the strobe bit MS0 high and MS1 low.

When a message is created on the DL20 a variable data symbol ↑ or ↓ can be


placed anywhere, and up to twenty times, within a message by pressing the
[Ctrl] key and [V] or [X] at the same time. For most keyboards (2706
keyboards) the [Ctrl] key and [V ]or [X] must be pressed simultaneously.
For the 1770-T3 Industrial Terminal, they must be pressed sequentially.
Control V is for non-decimal point variables and control X is for decimal
point variables and/or fixed format variables. The programmable controller
must sequentially strobe the variables into the DL20 data queue in the same
order that the variables are to appear in the message. After the variables are
queued, then the message number is triggered.

The following program example uses a sequencer output instruction from the
PLC-2 to strobe the information into the DL20 parallel port.

4
Installation Data
Dataliner Message Displays
DL20 PLC Applications

Table A
PLC-2 Sequencer Outputs

BCD
PC Word Step Binary Format Comments
Format

Special Message 10 (Clear


037 1 3010 0011000000010000 Queues)

040 2 0000 0000000000000000 Null Step

Hi Data
041 3 2012 0010000000010010 (1st Variable)

042 4 0000 0000000000000000 Null Step

Low Data
043 5 1034 0001000000110100 (1st Variable)

044 6 0000 0000000000000000 Null Step

045 7 3020 0011000000100000 Message Member

046 8 0000 0000000000000000 Null Step

The steps of a sequencer instruction can be viewed on the 1770-T3 Industrial


Terminal by moving the cursor to the sequencer instruction and pressing
<Display> 1 for BCD display format or <Display> 0 for binary display
format.

The NULL STEPS shown in the above sequence are added to satisfy timing
requirements of the DL20.

In the following program example, steps 1 through 8 shown above represent


word 037-046 (octal) as defined in the sequencer instruction.

The resulting message would be displayed:

TIMER 032 = 1234

The variable 1234 shown on the above display and in the example steps is for
illustration purposes only. Actually, the free running timer 032 in the rung
examples to follow range from 0 to 999.

5
Installation Data
DataLiner Message Displays
DL20 PLC Applications

PLC-2 Figure 2 shows the example ladder program for transferring variable data
Programming Examples with a PLC-2.

Figure 2
PLC-2 Ladder Program (Messages with Variable Data)

031 030
SEQUENCER OUTPUT
COUNTER ADDR: 030 EN Rung 1
15 CURRENT STEP: 008 17
SEQ LENGTH: 008
WORDS PER STEP: 1 030
FILE: 037-046 DN
MASK: 035-035
15
OUTPUT WORDS
1: 010 2:
3: 4:

111 031 031


TON Rung 2
14 15 .01
PR 002
030 AC 000

15
032 032
TON Rung 3
15 .01
PR 999
AC 000
030 034
G = ZCL Rung 4
012 002
032 043
Rung 5
00 00
032 043
Rung 6
01 01
032 043
Rung 7
02 02
032 043
Rung 8
03 03
032 043
Rung 9
04 04
032 043
Rung 10
05 05

6
Installation Data
Dataliner Message Displays
DL20 PLC Applications

Figure 2
PLC-2 Ladder Program (Messages with Variable Data) Continued

032 043
Rung 11
06 06
032 043
Rung 12
07 07
032 041
Rung 13
10 00
032 041
Rung 14
11 01
032 041
Rung 15
12 02
032 041
Rung 16
13 03

ZCL Rung 17

Rung Descriptions (Figure 2)


Rung 1
Each time TON 031 is done, the sequencer instruction outputs the next step.
These steps were described previously. The sequencer done bit is set when
the sequencer reaches its last step.

SEQ LENGTH: Number of steps (8 for this example).

WORDS PER STEP: 1 (for this example).

FILE: Address range of steps (037-046 for this example).

MASK: Select any available address and set all bits equal to 1 (035 for
this example).

OUTPUT WORD: I/O address at which the output modules for the DL20
are located (010 for this example).

7
Installation Data
DataLiner Message Displays
DL20 PLC Applications

PLC-2 Rung 2
Programming Examples This is the rung that actually triggers the message. Setting input address
111:14 momentarily will initiate one complete sequence, displaying the
message with variable data. If the application requires the variables to be
continuously updated on the display, then, address 111:14 should be set
high continuously for that period of time.

Timer 031 determines the time between step changes. This time should
not be set lower than 70 milliseconds per step for AC output module
applications using a Parallel Input Converter (2706-NG1, -NG2,
Series A or B).

For DC output module applications the minimum timer value (031) is 20


milliseconds (002 in the example). The DL20 scan time should be near
the minimum value 4 and likewise the debounce time should be set near
its minimum, 1.

Rung 3
A free-running timer is used to create the data value being displayed.

Rung 4
This rung and rung 17 assure that both the high byte and low byte data
portion of the variable are both moved to the appropriate word in the
sequencer file at the same time. Otherwise, the timer value could change
between the time that the high byte and low byte are strobed to the DL20.

The GET instruction (address 030) is the same address used for the
sequencer instruction and contains the current “step number”. The equal
instruction (address 034) could have been any available address and must
store a constant (2 in this case), so that rungs 5-16 will only be scanned
and updated once per sequencer cycle. Any step can be selected,
however, step 2 is the last step prior to the variable data being sent to the
DL20.

Rungs 5-12
Transfer the low byte data from timer 032 accumulative value to the
appropriate sequencer step (word 043).

Rungs 13-16
Transfer the high byte data from timer 032 accumulative value to the
appropriate sequencer step (word 041).

Rung 17
Marks the end of the zone to be controlled according to rung 4.

8
Installation Data
Dataliner Message Displays
DL20 PLC Applications

PLC-5 Programming The PLC-5 processor configuration used for both examples is listed below.
Examples This configuration may vary for different applications.
1. An Allen-Bradley 1784-T45 Industrial Computer is used.
2. The Data Monitor command is used to configure the sequencer table.
3. Two output modules in Rack 0, module group 0 (O:000).
4. The DL20 is defined as follows:
• high true logic
• binary message/variable data
• time driven
• DC inputs
• scan = 4, debounce = 1

Figure 3 illustrates how individual inputs can trigger unique corresponding


messages. If two or more inputs are true at the same time, the rung closest to
the end of the ladder diagram has priority and only that message is triggered
during this program scan.

Figure 3
Triggering Messages Using Individual Inputs (PLC-5)

CPT
COMPUTE Rung 1
Dest O:001
1298
Expression
N7:0

B3 CPT
COMPUTE Rung 2
1 Dest 0:001
12298
Expression
N7:1

B3 CPT
COMPUTE Rung 3
2 Dest: 0:001
12298
Expression
N7:2

B3 CPT
COMPUTE Rung 4
3 Dest: 0:001
12298
Expression
N7:3

9
Installation Data
DataLiner Message Displays
DL20 PLC Applications

PLC-5 Programming When no inputs are true, the display clears since the 1st rung shown always
Examples triggers special message #1. If your application requires that the last
message remains displayed indefinitely, do not program the first rung.
The DL20 Auto Clear message feature must be disabled for this type of
operation.

In this example, one rung is required for each unique message to be


triggered.

The DL20 examines 10 bits (D0-D9) on the parallel port when a message
number is strobed in. If binary message data is selected, a range of unique
message numbers from 1 to 1022 is allowed. If BCD message data is
selected, a range of unique message numbers from 1 to 399 is allowed.

Rung Descriptions (Figure 3)


Rung 1
Triggers special message number 1 to clear the display if no other
messages are being triggered in a later rung. A constant 1 is stored in
address N7:0.

Rung 2
Triggers message number 20 if input B3:1 is true and if rungs 3 and 4 are
not true.

Rung 3
Triggers message number 21 if input B3:2 is true and if rung 4 is not true.

Rung 4
Triggers message number 22 if input B3:3 is true.

This example provides a priority type of operation. For example, rung 4


(message 22) has priority over rung 3 (message 21) because the later rung (if
true) will write over any previous message number put into output word
0:000.

Complete Instruction
The CPT instruction will get all 16 bits of the designation source word and
move it into the designated destination word. This instruction may also be
substituted with a MOV (move) or MVM (move with mask) instruction.

10
Installation Data
Dataliner Message Displays
DL20 PLC Applications

Triggering Messages with Variable Data


This program example illustrates how a message with a variable data value
from a PLC-5 Programmable Controller can be displayed on a DL20.

There are 10 data lines (D0-D9) and 2 strobe lines MS0 and MS1 on the
DL20. If both MS0 and MS1 are high, it indicates to the DL20 that the value
present on the data lines D0-D9 is a message number to be triggered. At this
point, all 10 data lines (D0-D9) are examined. If binary message data is
selected, then the range is 1 to 1022. If BCD message data is selected, then
the range is 1 to 399.

The DL20 displays variable data from the programmable controller within a
range of 0 to ±32, 767 binary or 0 to 9999 BCD. Because these are 16 bit
data values and the DL20 has only 10 data lines, each variable must be
strobed into the DL20 in two parts, 8 bits at a time. First the high byte is
strobed in. This is indicated by setting the strobe bit MS0 low and MS1
high. Next the low byte (least significant data) is strobed in to the DL20.
This is indicated by setting the strobe bit MS0 high and MS1 low.

When a message is created on the DL20 a variable data symbol ↑ or ↓ can be


placed anywhere and up to twenty times within a message by pressing the
[Ctrl] key and [V] or [X] at the same time. For most keyboards (2706
keyboards) the [Ctrl] key and [V] or [X] must be pressed simultaneously.
For the 1770-T3 Industrial Terminal, they must be pressed sequentially.
Control V is for non-decimal point variables and control X is for decimal
point variables and or fixed format variables. The programmable controller
must sequentially strobe the variables into the DL20 data queue in the same
order that the variables appear in the message. After the variables are
queued, the message number is triggered.

The following program example uses a sequencer output instruction from the
PLC-5 to strobe the information into the DL20 parallel port.

11
Installation Data
DataLiner Message Displays
DL20 PLC Applications

PLC-5 Programming Table B


Examples PLC-5 Sequencer Outputs

PLC 5 Binary Radix Bit 9 Bit 8


Data Table N7 Integer File SQO DL20 DL20 DL20 Data Lines① Decoded
Address MSB 15 0 LSB Step# MS1 MS0 D7 ..... D0 Data Comments
N7:0 0000 0000 0000 0000 0 0 0 0000 0000 0 Initial output step for
SQO.

N7:1 0000 0011 0000 1010 1 1 1 0000 1010 10 Special Msg #10
clears DL20 queue.

N7:2 0000 0010 0000 0001 2 1 0 0000 0001 1 High Byte for variable
data = 256.

N7:3 0000 0001 0001 1111 3 0 1 0001 1111 31 Low Byte for variable
data = 31.

N7:4 0000 0011 0001 0001 4 1 1 17 Triggers message


#17.

N7:9 0000 0000 0001 1111 T4:1.ACC = 287

N7:10 0000 0000 0000 0001

① D8 and D9 are not used in this example.

The steps of the sequencer can be viewed on your PLC-5 programming


software using the Data Monitor Command to view file #N7:0 file array.

The resulting message would be displayed:

TIMER T4:1 = 287

The variable 287 on the above display is the accumulated value for T4:1, free
running timer.

12
Installation Data
Dataliner Message Displays
DL20 PLC Applications

Figure 4
PLC-5 Ladder Program (Messages with Variable Data)

T4:0 SQO
SEQUENCER OUTPUT (EN)
Rung 2:0 File #N7:0
DN Mask 03FF (DN)
Dest O:002
Control R6:0
Length 4
Position 0

T4:0 TON
TIMER ON DELAY (EN)
Rung 2:1 Timer T4:0
DN Time Base 0.01 (DN)
Preset 3
Accum 1

T4:1 TON
TIMER ON DELAY (EN)
Rung 2:2 Timer T4:1
DN Time Base 1.0 (DN)
Preset 1250
Accum 287

MVM
Rung 2:3 MASKED MOVE
Source T4:1.ACC
287
Mask 00FF

Dest N7:9
31

BTD
Rung 2:4 BIT FIELD DISTRIB
Source T4:1.ACC
287
Source bit 8
Dest N7:10
1
Dest bit 0
Length 8

MVM
Rung 2:5 MASKED MOVE
Source N7:10
1
Mask 00FF

Dest N7:2
513

MVM
Rung 2:6 MASKED MOVE
Source N7:9
31
Mask 00FF

Dest N7:3
287

(END OF FILE)
13
Installation Data
DataLiner Message Displays
DL20 PLC Applications

PLC-5 Programming Rung Descriptions (Figure 4)


Examples
Rung 2:0
Each time input T4:0/dn is true, the sequencer output instruction outputs
the next step. The sequencer done bit is set when the sequencer reaches
rung 2:4. The sequencer then resets itself and begins again.

Rung 2:1
Timer T4:0 is a free running timer which drives the SQO. A preset value
of 3 provides a pulse every 30 msec.

Rung 2:2
Timer T4:1 is a free running timer which generates the variable data for
the DL20.

Rung 2:3
Masks off the low byte data from T4:1.ACC and moves it to lower byte of
N7:9. The low byte data is now in a format that can be output to the
DL20 data lines (D0 through D7).

Rung 2:4
Transfers or distributes the high byte of T4:1.ACC to the lower byte of
N7:10. The high byte data is now in a format that can be output to the
DL20 data lines (D0 through D7).

Rung 2:5
Takes the high byte data at N7:10 and moves it to N7:2 for use with the
SQO. The upper byte of N7:2 is preloaded with the correct bit pattern to
control the strobe lines using the Data Monitor. This has the effect of a
logic OR for the changing high byte variable data and the constant strobe
bit settings.

Rung 2:6
Takes the low byte data at N7:9 and moves it to N7:3 for use with the
SQO. The upper byte of N7:3 is preloaded with the correct bit pattern to
control the strobe lines using the Data Monitor. This has the effect of a
logic OR for the changing low byte variable data and the constant strobe
bit settings.

14
Installation Data
Dataliner Message Displays
DL20 PLC Applications

DL20 Parallel Port The following parameters are configured within the SET PARALLEL PORT
Configuration menu of the DL20.

HI TRUE LOGIC? (Y for PLC-2/PLC-5 example)

Selecting Y (yes) means that the DL20 is expecting the parallel inputs to be
high (ON) when a logic 1 is represented.

Selecting N (no) means that the DL20 is expecting the parallel inputs to be
low (OFF) when a logic 1 is represented.

BINARY MSG DATA? (N for PLC-2 example) (Y for PLC-5 example)

Selecting Y (yes) means that the DL20 will expect message triggers in a
binary format. (Binary format works well with the PLC-5)

Selecting N (no) means that the DL20 will expect message triggers in a BCD
format. (BCD format works well with the PLC-2)

BINARY VAR DATA? (N for PLC-2 example). (Y for PLC-5 example)

Selecting Y (yes) means that the DL20 will expect variable data to be
strobed in a binary format.

Selecting N (no) means that the DL20 will expect variable data to be strobed
in a BCD format.

TIME SAMPLE? (Y for PLC-2 / PLC-5 example)

Selecting Y (yes) means that all parallel port data will be sampled
automatically at a rate determined by the SCAN TIME. If DC parallel port
operation was selected the user is also prompted for DEBOUNCE TIME.

Selecting N (no) means that the user wishes to use the edge triggered strobe
(ETS) input to strobe all data into the parallel port. The user is then
restricted to a DC voltage interface and must select “high to low” or “low to
high” edge sensing for the ETS input. The ETS lines of the DL20 are
provided for use with other manufacturers programmable controllers having
output modules with strobe lines.

USE NG 1/2 SER A,B? (N for PLC-2 / PLC-5 example)

Selecting Y (yes) means that a Parallel Input Converter (Catalog No.


2706-NG1, -NG2 Series A or B) is being used. TIME DRIVEN must have
been selected previously.

Selecting No (no) means that a DC parallel interface or Parallel Input


Converter (Catalog No. 2706-NG1, -NG2 Series C or later) is being used.

15
Installation Data
DataLiner Message Displays
DL20 PLC Applications

DL20 Parallel Port SCAN RATE: (4 for PLC-2/PLC-5 example)


Configuration
If TIME DRIVEN mode was selected previously, then the value entered
represents the period between samplings of the parallel port. The value
entered is in units of 1.95 milliseconds.

Example: 28 = 28 x 1.95 = 54.6 milliseconds between samplings.

Important: You must be sure that data (each step) is present on the parallel
port for at least the scan rate.

If a Parallel Input Converter (Catalog No. 2706-NG1 or -NG2 Series A or B)


is used, the SCAN RATE range is 28 - 255 (54.6 - 500 ms). If not, the range
is 4 - 255 (7.8 ms - 500 ms).

DEBOUNCE TIME: (1 for PLC-2/PLC-5 example)


Not applicable for applications using Parallel Input Converters (Catalog No.
2706-NG1, -NG2 Series A or B).

The debounce time is in units of 1.95 milliseconds. The range is 1 - 255.


Debounce time determines how many samples are evaluated during the
sampling period as determined by the scan rate selected. For example, if a
debounce time of 5 is selected, then 5 samples are taken 1.95 milliseconds
apart. All of these samples must match for the data to be read by the DL20.
The debounce time should be at least 3 less than the scan rate.

Variable Data For AC parallel interface applications using Parallel Input Converters
Update Times (Catalog No. 2706-NG1, -NG2 Series A or B), data should be present (each
step of sequencer) at the parallel port for at least 180 milliseconds.

For DC parallel interface applications, data should be present (each step of


sequencer) for at least 20 milliseconds. These are the minimum allowed
values for the sequencer step timer (031 in the PLC -2 example or T4:1 in the
PLC-5 example).

To determine update time, multiply the time interval between sequencer steps
by the number of sequencer steps. In the PLC-2 variable data example, timer
031 in rung 2 determines the time interval between steps. For a setting of
PR010 (100 milliseconds), the update time for the variable data in this
example of 8 steps, will be 800 milliseconds (100 ms x 8).

16
Installation Data
Dataliner Message Displays
DL20 PLC Applications

Parallel Interface The following connections are applicable to the program examples shown
Connections previously.

The standard voltage levels required for the DL20 parallel port are 5 to 30
VDC. When using DC Output Modules, an external power supply of the
appropriate voltage level and current capacity is required.

AC Output Modules can be used, however, these applications require one of


the Parallel Input Converters as described below. The need for an external
DC power supply is eliminated.

2706-NG1 - Display Mounted 120VAC Parallel Input Converter.

2706-NG2 - Panel Mounted 120VAC Parallel Input Converter.

Figure 5 shows connections betwenn a parallel Input Converter and AC


Output Module (Catalog No. 1771-OA).

Figure 6 shows connections between a DL20 and DC Output Modules


(Catalog No. 1771-OB or -OG)

Figure 7 shows connections between a DL20 and High Density Output


Module (Catalog No. 1771-OBD).

17
Installation Data
DataLiner Message Displays
DL20 PLC Applications

Figure 5
Parallel input Converter to AC Output Module

AC
D9 D8 D7 D6 D5 D4 D3 D2 D1 DO MS1 MS0 COM

120
VAC AC NEU
Parallel Input
Conveter Terminals HOT PWR

00-07 10-17

A A

0 0

1 1

2 2

3 3

4 4

5 5

6 6

7 7

8 8

1771-OA AC Output Modules (120 VAC)

18
Installation Data
Dataliner Message Displays
DL20 PLC Applications

Figure 6
DL20 to DC Output Module (Catalog No. 1771-OB, -OG)

+ 12-24 VDC (OB) -


or
DL20 Terminals + 5 VDC (OG) -

00-07 10-17

A A
0 0
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8

1771-OB DC Output Modules (12-24 VDC)


or
1771-OG DC Output Modules (5VDC)
Set both internal switches in the OG module ON for
high true logic.

Important Note: The 1771-OG TTL output modules 5VDC signals are
more noise susceptible than 12-24 DC signals. In applications where noise
may be a problem, it is strongly recommended that a 1771-OB DC output
module be used.

ATTENTION: Do not connect to terminal 22 (+5 VDC OUT).


Applying any voltage to this terminal will damage the DL20.
!

19
Installation Data
DataLiner Message Displays
DL20 PLC Applications

Figure 7
DL20 to High Density DC Output Module (Catalog No. 1771-OBD)

DL20 Terminals

High Density Output Module


Catalog No. 1771-OBD)

ATTENTION: Do not connect to terminal 22 (+5 VDC OUT).


Applying any voltage to this terminal will damage the DL20.
!
A subsidiary of Rockwell International, one of the world’s largest technology companies,
Allen-Bradley meets today’s automation challenges with over 85 years of practical plant floor
experience. 11,000 employees throughout the world design, manufacture and apply a wide
range of control and automation products and supporting services to help our customers
continuously improve quality, productivity and time to market. These products and services not
only control individual machines, but also integrate the manufacturing process while providing
access to vital plant floor data that can be used to support decision–making throughout the
enterprise.

With offices in major cities worldwide.


WORLD HEADQUARTERS EUROPE/MIDDLE EAST/ ASIA/PACIFIC HEADQUARTERS CANADA HEADQUARTERS LATIN AMERICA
Allen-Bradley AFRICA HEADQUARTERS Allen–Bradley Allen–Bradley Canada Limited HEADQUARTERS
1201 South Second Street Allen–Bradley Europe B.V. 1201 South Second Street 135 Dundas Street Allen-Bradley
Milwaukee, WI 53204 USA Amsterdamseweg 15 Milwaukee, WI 53204 USA Cambridge, Ontario N1R 5X1 1201 South Second Street
Tel: (1) 414 382–2000 1422 AC Uithoorn Tel: (1) 414 382–2000 Canada Milwaukee, WI 53204 USA
Telex: 43 11 016 The Netherlands Telex: 43 11 016 Tel: (1) 519 623–1810 Tel: (1) 414 382–2000
Fax: (1) 414 382–4444 Tel: (31) 2975/43500 Fax: (1) 414 382–2400 Fax: (1) 519 623–8930 Telex: 43 11 016
Telex: (844) 18042 Fax: (1) 414 382–2400
Fax: (31) 2975/60222

Publication No. 2706-2.21 – June 1993 1993 Allen-Bradley Company, Inc. Printed in U.S.A.
20

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy