16.2.1 Introduction to HMI tags
A tag identifies a memory location for a value (data content) with a data type (data format) by means of a name (symbol). For example, a tag can be defined with the name “Level”, which represents a fixed-point number (data type UINT) with a (start) value of 0.
Two types of HMI tags are encountered in the engineering software for an HMI sta- tion: internal tags and external tags.
An internal HMI tag does not have a connection to the PLC station. It is saved in the HMI station, and can only be used by the program of this station. Table 16.3 shows the data types which can be used for internal HMI tags.
Table 16.3 Data types for HMI tags
Designation Description Designation Description
BOOL Binary tag REAL 32-bit floating-point number
SINT 8-bit value with sign LREAL 64-bit floating-point number USINT 8-bit value without sign WSTRING String with 16-bit character set INT 16-bit value with sign DATETIME Date and time in the format
DD.MM.YYYY hh:mm:ss UINT 16-bit value without sign
DINT 32-bit value with sign ARRAY One-dimensional field with an index range from 0 to maximum 99 UDINT 32-bit value without sign
An external HMI tag (process tag) is the image of a memory location in the PLC sta- tion. This memory location can be accessed by both the HMI station – with the HMI tag name – and by the PLC station – with the PLC tag name. If an HMI connection between the PLC station and the HMI station is configured in network view, this is called an integrated connection. In an integrated connection, the PLC tag can be addressed absolutely or symbolically and can be in a data block with optimized access or standard access. A connection is not integrated if it is configured in the connection table, for example because both stations are not located together in the same project. A PLC tag can be accessed via a non-integrated connection only with absolute addressing.
With the HMI configuration, the expression “PLC tag” stands for a tag in the PLC sta- tion. This can be a tag from the PLC tag table or a data tag from a data block.
The external HMI tags accept the data types assigned to them in the PLC station (PLC data types, not with data type STRUCT). With a PLC tag with data type ARRAY, the HMI tag accepts the number (“array elements”) and the data type of the ele- ments.
In addition to the external tags, it is also possible to exchange data between the HMI and PLC station using Area pointers.
16.2.2 Creating an HMI tag
All HMI tags are located in the project tree under the HMI station in the HMI tags folder. When creating an HMI station, the default tag table, into which you can enter the HMI tags, is automatically created. Double-click on Add new tag table to add additional tag tables. For the selected HMI tags folder, you can create subfolders for a better overview with the Add group command from the shortcut menu. A tag can only be defined once (in an HMI station there is only a single tag table, which can be divided into subtables). Double-click on Show all tags to obtain an overview of all configured HMI tags.
To create an HMI tag, open an HMI tag table by double-clicking on it. If you want to create an internal tag, select <Internal tag> as connection. In the Data type column, select the HMI data type from a drop-down list. For the ARRAY data type, enter the range in square brackets, followed by the keyword OF and the data type, e.g. ARRAY [0..24] OF INT.
With an external tag (process tag), set the connection to the PLC station and select the PLC tag. You can select tags from a PLC tag table or from data blocks (in the Pro- gram blocks) folder. The data type of the PLC tag is automatically applied. Under Acquisition cycle, set the time interval with which the updating is to be carried out.
Make sure with these settings that the communication load on the connection between the HMI and PLC stations remains within acceptable limits.
Configuring an HMI tag
In the Properties tab of the inspector window, you can set further properties of the selected tag. For example, you can set the type of recording in the Properties section under Settings:
b Cyclic in operation = the tag is updated regularly as long as it is displayed in a screen
b Cyclic continuous = the tag is updated regularly even if it is not displayed in a screen
b On demand = the tag is updated on request, e.g. by a system function
Under Range you can set an upper and a lower limit value for the selected tag. Under Linear scaling the range of values of the PLC tag is converted linearly into a range of values in the HMI station. Scaling is carried out for the data exchange in both direc- tions. The start value when switching on the HMI station or up to the first update is defined under Values. Multiplexing (indirect addressing) allows you to determine the used tag during runtime, and not before. A multiplex tag consisting of a list of tags is used for configuration. An index tag then selects the used tag from this list.
In the Events tab you can assign a function list with system functions to be executed if certain events such as a change in value or a limit violation occur.
16.2.3 Creating an area pointer
An area pointer defines a memory area in the PLC station. The programs of the HMI and PLC stations exchange data via this memory area. Example: when changing the screen, the number of the current process screen is transferred to the PLC station by means of the area pointer Screen number. The program of the PLC station can re- spond to this.
The area pointers must be configured prior to use. The length of an area pointer is specified in 16-bit words. The memory area to which an area pointer refers is pres- ent in a data block in the user program. An area pointer with a length = 1 can also be a PLC tag from the PLC tag table. With a length of > 1, the PLC tag in the data block is created with data type ARRAY and a 16-bit data type (e.g. WORD) with the length of the area pointer, e.g. ARRAY [1..4] OF WORD.
Overview of area pointers
Table 16.4 lists the available area pointers. The global area pointers Screen number, Date/time PLC and Project ID can only be used once per station and only in one con- nection.
b Screen number: When changing the screen, the HMI station transfers the screen number to the PLC station (global area pointer).
b Job mailbox: A control job consists of a job number and up to three parameters.
The PLC station writes a control job into the data area; if the HMI station has ac- cepted the job, it overwrites the job number with zero.
b Date/time: The PLC station writes the control job No. 41. The HMI station then transfers the date and time in data type DTL to the PLC station.
b Date/time PLC: The PLC station writes the date and time in data type DTL to the data area which is then read cyclically by the HMI station. The HMI station im- ports the date and time (global area pointer).
b Coordination: The HMI station transfers its actual operating mode in this data ar- ea: Startup (bit 0 = “0” during startup), offline/online mode (bit 1 = “0” with on- line mode) and communication readiness (by means of a “sign-of-life bit”, bit 2 changes its signal state at approx. 1 Hz).
b Project ID: The HMI station can recognize whether it is connected to the “correct”
PLC station. The project ID is created when configuring the HMI station: dou- ble-click on the Runtime settings editor in the project tree under the HMI station, and enter a value between 1 and 255 in the Screens section in the Project ID field.
Then write the same value in the PLC station in the data area of the Project ID area pointer. During startup, the HMI station compares the two values, and does not start unless they agree.
b Data record: The Data record area pointer is required for synchronized transfer of a recipe data record. Handling of recipes is described in Section 16.4.3 “Work- ing with recipes” on page 535.
Table 16.4 Area pointers for Basic Panels
Area pointer Required for Length HMI PLC
Screen number Transfer of number of current screen 5 Writes Reads
Job mailbox Triggering of functions on the HMI station with the job numbers:
14: Set time BCD-coded 15: Set date BCD-coded 23: Log on user 24: Log off user
40: Transfer date/time to PLC station 41: Transfer date/time to PLC station (DTL) 46: Update tag
49: Clear event buffer 50: Clear error alarm buffer 51: Screen selection
69: Read data record from PLC station 70: Write data record to PLC station
4 Reads
and writes
Reads and writes
Date/time Transfer of date and time to PLC station 6 Writes Reads
Date/time PLC Transfer of date and time to HMI station 6 Reads Writes Coordination Transfer of HMI station status to PLC station 1 Writes Reads
Project ID Checking project ID in HMI station 1 Reads Writes
Data record Transfer of recipe data records with synchronization 5 Reads and writes
Reads and writes
Configuring an area pointer
Prerequisite: A PLC station, an HMI station, and an HMI connection have been cre- ated in the project. The user program of the PLC station contains a data block in which the data area for the area pointer is declared (see Chapter 6.4 “Programming a data block” on page 194).
Double-click on the Connections editor in the project tree under the HMI station.
The top part of the connection window contains a table with the configured connec- tions.
There are two tables in the bottom part of the connection window in the Area pointers tab: the table with the area pointers created for the connection selected in the connection table is shown at the top, and at the bottom the table with the global area pointers which can only be created once in the HMI station and only in one con- nection.
You can activate an area pointer in the top table using the Active check box and in the bottom table by specifying the connection. Assign the PLC tag to the area point- er. The PLC tag must have been created previously in the PLC station with the same length as the area pointer. You can set the acquisition cycle using the Job mailbox and Date/time PLC area pointers.