Generating custom data table monitor pages – Rockwell Automation 1766-L32xxx MicroLogix 1400 Programmable Controllers Web Server User Manual User Manual

Page 37

Advertising
background image

Publication 1766-UM002A-EN-P - November 2008

User Provided Pages 35

HTML Examples - the following example shows an HTML code
segment with a short description of what you would see on a web
browser:

Generating Custom Data
Table Monitor Pages

You can generate Custom Data Table Monitor pages with your text
editor then download them to the MicroLogix 1400 controller using
RSLogix 500/RSLogix Micro version 8.10 or later. The first element of
the file must contain a special tag
as shown here:

<!ABCDM-xx>

where xx is the automatic refresh rate in seconds (01 to 99).

A value outside the range defaults to a “snapshot” display.
You can modify the refresh rate three different ways:

enter the desired refresh rate and press the Change button

select the Default button for a 15 second refresh

disable the refresh by selecting the Disable button

Referencing Data Table Memory - the Data Table locations in the
Custom Data Table Monitor are referenced by placing custom tags into
the ASCII file of the processor. The format of the custom tag is:

<!ABDTR-file_type{file_number}:{file_element}[,#elements][%format]
[!comment]>

The items surrounded with {} are sometimes optional, whereas the
items surrounded by [] are always optional.

Examples

HTML Code

Web Browser Displays

Input image word I:0

<!ABDTR-I:0>

the value of the first word of the
input image table in the default
format of decimal with bold type

Timer T4:0

<!ABDTR-T4:0>

the values of the timer in T4:0 in
the default format of a table

Timer T4:0

<!ABDTR-T4:0%d>

the values of the three words
comprising timer T4:0 in decimal
with bold type

N24:0 to N24:3

<!ABDTR-N24:0,4>

the values of the four words in
N24:0 through N24:3 in decimal
with bold type

S:21 to S:23

<!ABDTR-S:21, 3%d>

the values of the three words in
S:21 through S:23 in decimal with
bold type

Advertising