SlideShare a Scribd company logo
1 of 11
Download to read offline
Page 1 of 11 Connecting an HMI to LOGO! ..0BA7
Connecting an HMI to LOGO! ..0BA7 (WinCC flexible)
Problem
A program which is used to monitor a fill level, a temperature and addresses a pump that is
currently executed in LOGO! ..0BA6, is now to be executed in LOGO! ..0BA7, and the actual
values of the fill level and the temperature are also to be displayed on a touch panel. It should
also be possible to enable/disable the pump using the touch panel. The status of the pump
(ON/OFF) should also be displayed on the panel.
Changes in the LOGO! program
Open the LOGO! ..0BA6 program with LOGO!Soft Comfort V7.
Page 2 of 11 Connecting an HMI to LOGO! ..0BA7
In the device selection ("Tools; Device selection") set the LOGO! ..0BA7 basic device.
Configure an Ethernet connection between LOGO! ..0BA7 and the touch panel. Click on
"Tools; Ethernet Connections…", assign the IP address as well as the subnet mask for the
basic device; create a new connection with a right-click on the Ethernet connections under
Peer-to-Peer connections.
Page 3 of 11 Connecting an HMI to LOGO! ..0BA7
Open the properties of the connection and configure it as seen in the following figure.
To specify which data are to be made available to the HMI, open "Tools; Parameter VM
Mapping…" and create a variable table.
Notes:
Information from the LOGO! program
HMI address
Parameter to be transferred
is a value of a function (e.g. the amplified value of an analog amplifier)
is a parameter of a function (e.g. the delay time
of an on-delay)
3 21
1
3
2
Page 4 of 11 Connecting an HMI to LOGO! ..0BA7
A network input and an XOR have also been added in the program to implement a two-way
circuit to turn the pump on and off. The variable V4.0 was set in the properties of the network
input because the variable byte 4 is the next free byte in the LOGO! variable memory.
Finally download the program with the configuration into the basic device.
Page 5 of 11 Connecting an HMI to LOGO! ..0BA7
Settings and configuration in WinCC flexible
Creating a new project
Open WinCC flexible and create a new project.
Inserting a new device
Then configure a new device. A KTP600 Basic color PN is used in the example.
Page 6 of 11 Connecting an HMI to LOGO! ..0BA7
Creating a connection
Create a new connection now. Select the menu item "Connections" in the Project navigation to
do so.
Add a new connection with a double-click in an empty row. Assign a name to the connection,
enter the IP addresses of the HMI device and the controller and select the communication
driver.
Note:
For communication with LOGO! ..0BA7, you must select the communication driver "SIMATIC S7
200".
* The IP addresses must be set before directly on the devices.
IP address of the HMI* IP address of LOGO!*
Page 7 of 11 Connecting an HMI to LOGO! ..0BA7
Creating tags
Next open the folder "Tags" in the Project navigation. You can now add HMI tags in the "Tag
table" and specify their properties.
Notes:
The following table shows you to which data the HMI has read and write access:
Read Write
Inputs (I) x -
Outputs (Q) x x
Flags (M) x -
Variables (V) x x
It is theoretically possible to write inputs and bit memories. But this does not make a lot of sense,
because LOGO! overwrites them in each cycle.
Inputs, outputs and bit memories can be configured in WinCC flexible with the following
addresses:
I Address Q Address M Address
I1 I0.0 Q1 Q0.0 M1 M0.0
I2 I0.1 Q2 Q0.1 M2 M0.1
I3 I0.2 Q3 Q0.2 M3 M0.2
I4 I0.3 Q4 Q0.3 M4 M0.3
I5 I0.4 Q5 Q0.4 M5 M0.4
I6 I0.5 Q6 Q0.5 M6 M0.5
I7 I0.6 Q7 Q0.6 M7 M0.6
I8 I0.7 Q8 Q0.7 M8 M0.7
I9 I1.0 Q9 Q1.0 M9 F1.0
I10 I1.1 Q10 Q1.1 M10 F1.1
I11 I1.2 Q11 Q1.2 M11 M1.2
I12 I1.3 Q12 Q1.3 M12 M1.3
I13 I1.4 Q13 Q1.4 M13 M1.4
I14 I1.5 Q14 Q1.5 M14 M1.5
I15 I1.6 Q15 Q1.6 M15 M1.6
I16 I1.7 Q16 Q1.7 M16 M1.7
I17 I2.0 M17 M2.0
I18 I2.1 M18 M2.1
I19 I2.2 M19 M2.2
I20 I2.3 M20 M2.3
I21 I2.4 M21 M2.4
I22 I2.5 M22 M2.5
I23 I2.6 M23 M2.6
I24 I2.7 M24 M2.7
M25 M3.0
M26 M3.1
M27 M3.2
Page 8 of 11 Connecting an HMI to LOGO! ..0BA7
Configuring screens
To configure screens, open the "Screens" folder in the Project navigation. The root screen is
automatically generated when you create the project as "Screen_1". Three screens (start
screen, fill level and temperature) are created in the example. Add two more screens with a
double-click.
Open "Screen_1" and create three buttons in it. One for switching to "Screen_2", the other for
switching to "Screen_3". Configure the third button to exit Runtime. To assign an event to a
button, select the "Events" window under "Properties".
Root screen with three buttons
Properties of a button
Page 9 of 11 Connecting an HMI to LOGO! ..0BA7
Now open "Screen_2". This screen displays the fill level and the pump status and is also used
to control the pump. That is why you enter a bar and two buttons as well as a circle into the
screen. The bar is linked to the "Fill level" tag in the properties and the scale is adapted for
reading the values. Button 1 is to be used to switch to the root screen. Configure this step in
the properties of the button under "Events". The circle is used to show the status of the pump.
The pump can be enabled/disabled with button 2.
Screen 2 with a bar and a button
Properties of the bar
Page 10 of 11 Connecting an HMI to LOGO! ..0BA7
Properties of the circle
Properties of the button (Pump ON/OFF)
Now open "Screen_3". This screen displays the temperature curve as well as the current
temperature. Add a trend display, an I/O field and a button to the screen. The trend view and
the I/O field are linked to the "Temperature" tag and the scale of the trend is adapted for
reading the values. The mode of the I/O field is set to output. The button is to be used to
switch to the root screen.
Screen 3 with a trend display, an input/output field and a button
Page 11 of 11 Connecting an HMI to LOGO! ..0BA7
Properties of the I/O field
Device Settings
Select the menu item "Device Settings" in the Project navigation to edit the settings of HMI
device.
Here you can do the general settings as well as settings for screens, keyboard, alarms, user
administration and language & font.
Testing the configuration
You can start testing your screens and settings during configuration. Click on the icon in the
toolbar to start the Runtime simulation.
Note:
If the controller is connected to the PC, you can use the process values from the controller for the
simulation. You must, however, set the access point S7ONLINE under Control Panel; Setting
PG/PC interface.
You can also simulate the tags with the tag simulator. You open it with a click on the symbol
below.

More Related Content

What's hot

S7 300 stl_programming_manual
S7 300 stl_programming_manualS7 300 stl_programming_manual
S7 300 stl_programming_manualPaulo Sérgio
 
Simatic manager siemens S7 guide
Simatic manager  siemens S7 guideSimatic manager  siemens S7 guide
Simatic manager siemens S7 guideRoopesh Matale
 
CLP S7 300 E S7 400
CLP S7 300 E S7 400 CLP S7 300 E S7 400
CLP S7 300 E S7 400 confidencial
 
Tai lieu plc s7 300
Tai lieu plc s7 300Tai lieu plc s7 300
Tai lieu plc s7 300Bùi Thể
 
Step 7 v5_2_e share by voip.com.vn
Step 7 v5_2_e share by voip.com.vnStep 7 v5_2_e share by voip.com.vn
Step 7 v5_2_e share by voip.com.vnTran Thanh
 
Simaticpcs7 stpcs71 complete_english_2011
Simaticpcs7 stpcs71 complete_english_2011Simaticpcs7 stpcs71 complete_english_2011
Simaticpcs7 stpcs71 complete_english_2011Vahid RG-zadeh
 
CLP S7 300 E S7 400
CLP S7 300 E S7 400 CLP S7 300 E S7 400
CLP S7 300 E S7 400 confidencial
 
19 exercises v1.00_en
19 exercises v1.00_en19 exercises v1.00_en
19 exercises v1.00_enconfidencial
 
24109937 wincc flexible_kommunikation_ethernet_e
24109937 wincc flexible_kommunikation_ethernet_e24109937 wincc flexible_kommunikation_ethernet_e
24109937 wincc flexible_kommunikation_ethernet_eFercho Oe
 
Ch4 v70 system_configuration_en
Ch4 v70 system_configuration_enCh4 v70 system_configuration_en
Ch4 v70 system_configuration_enconfidencial
 
BlackHat 2011 - Exploiting Siemens Simatic S7 PLCs (slides)
BlackHat 2011 - Exploiting Siemens Simatic S7 PLCs (slides)BlackHat 2011 - Exploiting Siemens Simatic S7 PLCs (slides)
BlackHat 2011 - Exploiting Siemens Simatic S7 PLCs (slides)Michael Smith
 
S7-1200 easy_book
S7-1200 easy_bookS7-1200 easy_book
S7-1200 easy_bookquanglocbp
 
Top Ten Programming Mistakes by People New to Siemens
Top Ten Programming Mistakes by People New to SiemensTop Ten Programming Mistakes by People New to Siemens
Top Ten Programming Mistakes by People New to SiemensDMC, Inc.
 
Ch1 2 kb_pcs7_v70_en
Ch1 2 kb_pcs7_v70_enCh1 2 kb_pcs7_v70_en
Ch1 2 kb_pcs7_v70_enconfidencial
 
AAME ARM Techcon2013 003v02 Software Development
AAME ARM Techcon2013 003v02  Software DevelopmentAAME ARM Techcon2013 003v02  Software Development
AAME ARM Techcon2013 003v02 Software DevelopmentAnh Dung NGUYEN
 

What's hot (19)

S7 300 stl_programming_manual
S7 300 stl_programming_manualS7 300 stl_programming_manual
S7 300 stl_programming_manual
 
Simatic manager siemens S7 guide
Simatic manager  siemens S7 guideSimatic manager  siemens S7 guide
Simatic manager siemens S7 guide
 
Siemens s7 300 programming instruction
Siemens s7 300 programming instructionSiemens s7 300 programming instruction
Siemens s7 300 programming instruction
 
SIEMENS S7-300c.ppt
SIEMENS S7-300c.pptSIEMENS S7-300c.ppt
SIEMENS S7-300c.ppt
 
CLP S7 300 E S7 400
CLP S7 300 E S7 400 CLP S7 300 E S7 400
CLP S7 300 E S7 400
 
Tai lieu plc s7 300
Tai lieu plc s7 300Tai lieu plc s7 300
Tai lieu plc s7 300
 
Step 7 v5_2_e share by voip.com.vn
Step 7 v5_2_e share by voip.com.vnStep 7 v5_2_e share by voip.com.vn
Step 7 v5_2_e share by voip.com.vn
 
Simaticpcs7 stpcs71 complete_english_2011
Simaticpcs7 stpcs71 complete_english_2011Simaticpcs7 stpcs71 complete_english_2011
Simaticpcs7 stpcs71 complete_english_2011
 
CLP S7 300 E S7 400
CLP S7 300 E S7 400 CLP S7 300 E S7 400
CLP S7 300 E S7 400
 
19 exercises v1.00_en
19 exercises v1.00_en19 exercises v1.00_en
19 exercises v1.00_en
 
24109937 wincc flexible_kommunikation_ethernet_e
24109937 wincc flexible_kommunikation_ethernet_e24109937 wincc flexible_kommunikation_ethernet_e
24109937 wincc flexible_kommunikation_ethernet_e
 
Ch4 v70 system_configuration_en
Ch4 v70 system_configuration_enCh4 v70 system_configuration_en
Ch4 v70 system_configuration_en
 
BlackHat 2011 - Exploiting Siemens Simatic S7 PLCs (slides)
BlackHat 2011 - Exploiting Siemens Simatic S7 PLCs (slides)BlackHat 2011 - Exploiting Siemens Simatic S7 PLCs (slides)
BlackHat 2011 - Exploiting Siemens Simatic S7 PLCs (slides)
 
S7-1200 easy_book
S7-1200 easy_bookS7-1200 easy_book
S7-1200 easy_book
 
Ch5 v70 cfc_en
Ch5 v70 cfc_enCh5 v70 cfc_en
Ch5 v70 cfc_en
 
20 what’s next
20 what’s next20 what’s next
20 what’s next
 
Top Ten Programming Mistakes by People New to Siemens
Top Ten Programming Mistakes by People New to SiemensTop Ten Programming Mistakes by People New to Siemens
Top Ten Programming Mistakes by People New to Siemens
 
Ch1 2 kb_pcs7_v70_en
Ch1 2 kb_pcs7_v70_enCh1 2 kb_pcs7_v70_en
Ch1 2 kb_pcs7_v70_en
 
AAME ARM Techcon2013 003v02 Software Development
AAME ARM Techcon2013 003v02  Software DevelopmentAAME ARM Techcon2013 003v02  Software Development
AAME ARM Techcon2013 003v02 Software Development
 

Viewers also liked (20)

01tiaportal handson-basicov11v2-140421084257-phpapp01
01tiaportal handson-basicov11v2-140421084257-phpapp0101tiaportal handson-basicov11v2-140421084257-phpapp01
01tiaportal handson-basicov11v2-140421084257-phpapp01
 
Fluxograma processo acucar_alcool_etanol_verde
Fluxograma processo acucar_alcool_etanol_verdeFluxograma processo acucar_alcool_etanol_verde
Fluxograma processo acucar_alcool_etanol_verde
 
Configuração
ConfiguraçãoConfiguração
Configuração
 
Stoe 05 p
Stoe 05 pStoe 05 p
Stoe 05 p
 
Instalação material adicional
Instalação   material adicionalInstalação   material adicional
Instalação material adicional
 
Profibus s7
Profibus s7Profibus s7
Profibus s7
 
Stoe 08 p
Stoe 08 pStoe 08 p
Stoe 08 p
 
Stoe 07 p
Stoe 07 pStoe 07 p
Stoe 07 p
 
Stoe 06 p
Stoe 06 pStoe 06 p
Stoe 06 p
 
Stoe 10 p
Stoe 10 pStoe 10 p
Stoe 10 p
 
Stoe 11 p
Stoe 11 pStoe 11 p
Stoe 11 p
 
A3 rede automação
A3 rede automação  A3 rede automação
A3 rede automação
 
Configuração
ConfiguraçãoConfiguração
Configuração
 
S7 bas-08
S7 bas-08S7 bas-08
S7 bas-08
 
Stoe 13 p
Stoe 13 pStoe 13 p
Stoe 13 p
 
Stoe 12 p
Stoe 12 pStoe 12 p
Stoe 12 p
 
Stoe 09 p
Stoe 09 pStoe 09 p
Stoe 09 p
 
09 tia portal hands on - pcba-v1
09 tia portal   hands on - pcba-v109 tia portal   hands on - pcba-v1
09 tia portal hands on - pcba-v1
 
Stoe 15 p
Stoe 15 pStoe 15 p
Stoe 15 p
 
Stoe 03 p
Stoe 03 pStoe 03 p
Stoe 03 p
 

Similar to 05 conexão logo! 0 ba7 com ihm (wincc flexible)

04 conex%c3%a3o%20 logo!%200ba7%20com%20ihm
04 conex%c3%a3o%20 logo!%200ba7%20com%20ihm04 conex%c3%a3o%20 logo!%200ba7%20com%20ihm
04 conex%c3%a3o%20 logo!%200ba7%20com%20ihmMarcio Miranda
 
04 conexão logo! 0 ba7 com ihm
04 conexão logo! 0 ba7 com ihm04 conexão logo! 0 ba7 com ihm
04 conexão logo! 0 ba7 com ihmMarcio Miranda
 
hmi_time_sync_how_to_e
hmi_time_sync_how_to_ehmi_time_sync_how_to_e
hmi_time_sync_how_to_eEcuador
 
First fare 2010 lab-view creating custom dashboards
First fare 2010 lab-view creating custom dashboardsFirst fare 2010 lab-view creating custom dashboards
First fare 2010 lab-view creating custom dashboardsOregon FIRST Robotics
 
BOTTLE LINE SIMULLATION IN LOGIXPRO
BOTTLE LINE SIMULLATION IN LOGIXPROBOTTLE LINE SIMULLATION IN LOGIXPRO
BOTTLE LINE SIMULLATION IN LOGIXPROMohan Tangudu
 
Unit III ARM Interface and ARM Programming
Unit III ARM Interface and ARM Programming Unit III ARM Interface and ARM Programming
Unit III ARM Interface and ARM Programming Dr. Pankaj Zope
 
Calculator 1
Calculator 1Calculator 1
Calculator 1livecode
 
Motion-Programming.pdf
Motion-Programming.pdfMotion-Programming.pdf
Motion-Programming.pdfPhilipKang11
 
Change transport system in SAP
Change transport system in SAP Change transport system in SAP
Change transport system in SAP chinu141
 
Software engineering modeling lab lectures
Software engineering modeling lab lecturesSoftware engineering modeling lab lectures
Software engineering modeling lab lecturesmarwaeng
 
Containers Lab
Containers Lab Containers Lab
Containers Lab Dev_Events
 
ABC Consolidated Financial InfoABC Companys current financial inf.docx
ABC Consolidated Financial InfoABC Companys current financial inf.docxABC Consolidated Financial InfoABC Companys current financial inf.docx
ABC Consolidated Financial InfoABC Companys current financial inf.docxransayo
 
hopTo Work Step by Step Test Drive
hopTo Work Step by Step Test DrivehopTo Work Step by Step Test Drive
hopTo Work Step by Step Test DrivehopTo
 
08 comunicação logo! com s7 1200
08 comunicação logo! com s7 120008 comunicação logo! com s7 1200
08 comunicação logo! com s7 1200Marcio Miranda
 

Similar to 05 conexão logo! 0 ba7 com ihm (wincc flexible) (20)

04 conex%c3%a3o%20 logo!%200ba7%20com%20ihm
04 conex%c3%a3o%20 logo!%200ba7%20com%20ihm04 conex%c3%a3o%20 logo!%200ba7%20com%20ihm
04 conex%c3%a3o%20 logo!%200ba7%20com%20ihm
 
04 conexão logo! 0 ba7 com ihm
04 conexão logo! 0 ba7 com ihm04 conexão logo! 0 ba7 com ihm
04 conexão logo! 0 ba7 com ihm
 
Vb%20 tutorial
Vb%20 tutorialVb%20 tutorial
Vb%20 tutorial
 
hmi_time_sync_how_to_e
hmi_time_sync_how_to_ehmi_time_sync_how_to_e
hmi_time_sync_how_to_e
 
First fare 2010 lab-view creating custom dashboards
First fare 2010 lab-view creating custom dashboardsFirst fare 2010 lab-view creating custom dashboards
First fare 2010 lab-view creating custom dashboards
 
BOTTLE LINE SIMULLATION IN LOGIXPRO
BOTTLE LINE SIMULLATION IN LOGIXPROBOTTLE LINE SIMULLATION IN LOGIXPRO
BOTTLE LINE SIMULLATION IN LOGIXPRO
 
Plc fatek
Plc fatekPlc fatek
Plc fatek
 
Visual Logic User Guide
Visual Logic User GuideVisual Logic User Guide
Visual Logic User Guide
 
A d swincc15e
A d swincc15eA d swincc15e
A d swincc15e
 
Unit III ARM Interface and ARM Programming
Unit III ARM Interface and ARM Programming Unit III ARM Interface and ARM Programming
Unit III ARM Interface and ARM Programming
 
Calculator 1
Calculator 1Calculator 1
Calculator 1
 
Motion-Programming.pdf
Motion-Programming.pdfMotion-Programming.pdf
Motion-Programming.pdf
 
Change transport system in SAP
Change transport system in SAP Change transport system in SAP
Change transport system in SAP
 
Software engineering modeling lab lectures
Software engineering modeling lab lecturesSoftware engineering modeling lab lectures
Software engineering modeling lab lectures
 
Containers Lab
Containers Lab Containers Lab
Containers Lab
 
ABC Consolidated Financial InfoABC Companys current financial inf.docx
ABC Consolidated Financial InfoABC Companys current financial inf.docxABC Consolidated Financial InfoABC Companys current financial inf.docx
ABC Consolidated Financial InfoABC Companys current financial inf.docx
 
hopTo Work Step by Step Test Drive
hopTo Work Step by Step Test DrivehopTo Work Step by Step Test Drive
hopTo Work Step by Step Test Drive
 
08 comunicação logo! com s7 1200
08 comunicação logo! com s7 120008 comunicação logo! com s7 1200
08 comunicação logo! com s7 1200
 
Wmc lab (1)
Wmc lab (1)Wmc lab (1)
Wmc lab (1)
 
First fare 2010 lab-view overview
First fare 2010 lab-view overviewFirst fare 2010 lab-view overview
First fare 2010 lab-view overview
 

More from confidencial

18 syntax rules v1.0
18 syntax rules v1.018 syntax rules v1.0
18 syntax rules v1.0confidencial
 
17 demonstration server client system-v1.00_en
17 demonstration server client system-v1.00_en17 demonstration server client system-v1.00_en
17 demonstration server client system-v1.00_enconfidencial
 
15 final steps of configuration v1.00_en
15 final steps of configuration v1.00_en15 final steps of configuration v1.00_en
15 final steps of configuration v1.00_enconfidencial
 
14 mass data engineering v1.00_en
14 mass data engineering v1.00_en14 mass data engineering v1.00_en
14 mass data engineering v1.00_enconfidencial
 
13 locking functions and operating modes v1.00_en
13 locking functions and operating modes v1.00_en13 locking functions and operating modes v1.00_en
13 locking functions and operating modes v1.00_enconfidencial
 
12 archiving system v1.00_en
12 archiving system v1.00_en12 archiving system v1.00_en
12 archiving system v1.00_enconfidencial
 
11 customizing the os v1.00_en
11 customizing the os v1.00_en11 customizing the os v1.00_en
11 customizing the os v1.00_enconfidencial
 
10 basics automatic mode control v1.00_en
10 basics automatic mode control v1.00_en10 basics automatic mode control v1.00_en
10 basics automatic mode control v1.00_enconfidencial
 
09 basics operating and monitoring v1.00_en
09 basics operating and monitoring v1.00_en09 basics operating and monitoring v1.00_en
09 basics operating and monitoring v1.00_enconfidencial
 
08 basics control functions v1.00_en
08 basics control functions v1.00_en08 basics control functions v1.00_en
08 basics control functions v1.00_enconfidencial
 
07 connection to the process v1.00_en
07 connection to the process v1.00_en07 connection to the process v1.00_en
07 connection to the process v1.00_enconfidencial
 
06 station and network configuration v1.00_en
06 station and network configuration v1.00_en06 station and network configuration v1.00_en
06 station and network configuration v1.00_enconfidencial
 
05 project setup v1.00_en
05 project setup v1.00_en05 project setup v1.00_en
05 project setup v1.00_enconfidencial
 
03 requirements and functional process description v1.00_en
03 requirements and functional process description v1.00_en03 requirements and functional process description v1.00_en
03 requirements and functional process description v1.00_enconfidencial
 
02 pcs 7 documentation and support v1.00 en
02 pcs 7 documentation and support v1.00 en02 pcs 7 documentation and support v1.00 en
02 pcs 7 documentation and support v1.00 enconfidencial
 
01 introduction v1.00_en
01 introduction v1.00_en01 introduction v1.00_en
01 introduction v1.00_enconfidencial
 
00 st pcs7-sys_v8.0_register 20 en
00 st pcs7-sys_v8.0_register 20 en00 st pcs7-sys_v8.0_register 20 en
00 st pcs7-sys_v8.0_register 20 enconfidencial
 
Sitrains7 1200pwmpid-150301123045-conversion-gate01
Sitrains7 1200pwmpid-150301123045-conversion-gate01Sitrains7 1200pwmpid-150301123045-conversion-gate01
Sitrains7 1200pwmpid-150301123045-conversion-gate01confidencial
 
Sitrain introdução a ihm
Sitrain introdução a ihmSitrain introdução a ihm
Sitrain introdução a ihmconfidencial
 
Sitrain visão geral do sistema tia portal
Sitrain visão geral do sistema tia portalSitrain visão geral do sistema tia portal
Sitrain visão geral do sistema tia portalconfidencial
 

More from confidencial (20)

18 syntax rules v1.0
18 syntax rules v1.018 syntax rules v1.0
18 syntax rules v1.0
 
17 demonstration server client system-v1.00_en
17 demonstration server client system-v1.00_en17 demonstration server client system-v1.00_en
17 demonstration server client system-v1.00_en
 
15 final steps of configuration v1.00_en
15 final steps of configuration v1.00_en15 final steps of configuration v1.00_en
15 final steps of configuration v1.00_en
 
14 mass data engineering v1.00_en
14 mass data engineering v1.00_en14 mass data engineering v1.00_en
14 mass data engineering v1.00_en
 
13 locking functions and operating modes v1.00_en
13 locking functions and operating modes v1.00_en13 locking functions and operating modes v1.00_en
13 locking functions and operating modes v1.00_en
 
12 archiving system v1.00_en
12 archiving system v1.00_en12 archiving system v1.00_en
12 archiving system v1.00_en
 
11 customizing the os v1.00_en
11 customizing the os v1.00_en11 customizing the os v1.00_en
11 customizing the os v1.00_en
 
10 basics automatic mode control v1.00_en
10 basics automatic mode control v1.00_en10 basics automatic mode control v1.00_en
10 basics automatic mode control v1.00_en
 
09 basics operating and monitoring v1.00_en
09 basics operating and monitoring v1.00_en09 basics operating and monitoring v1.00_en
09 basics operating and monitoring v1.00_en
 
08 basics control functions v1.00_en
08 basics control functions v1.00_en08 basics control functions v1.00_en
08 basics control functions v1.00_en
 
07 connection to the process v1.00_en
07 connection to the process v1.00_en07 connection to the process v1.00_en
07 connection to the process v1.00_en
 
06 station and network configuration v1.00_en
06 station and network configuration v1.00_en06 station and network configuration v1.00_en
06 station and network configuration v1.00_en
 
05 project setup v1.00_en
05 project setup v1.00_en05 project setup v1.00_en
05 project setup v1.00_en
 
03 requirements and functional process description v1.00_en
03 requirements and functional process description v1.00_en03 requirements and functional process description v1.00_en
03 requirements and functional process description v1.00_en
 
02 pcs 7 documentation and support v1.00 en
02 pcs 7 documentation and support v1.00 en02 pcs 7 documentation and support v1.00 en
02 pcs 7 documentation and support v1.00 en
 
01 introduction v1.00_en
01 introduction v1.00_en01 introduction v1.00_en
01 introduction v1.00_en
 
00 st pcs7-sys_v8.0_register 20 en
00 st pcs7-sys_v8.0_register 20 en00 st pcs7-sys_v8.0_register 20 en
00 st pcs7-sys_v8.0_register 20 en
 
Sitrains7 1200pwmpid-150301123045-conversion-gate01
Sitrains7 1200pwmpid-150301123045-conversion-gate01Sitrains7 1200pwmpid-150301123045-conversion-gate01
Sitrains7 1200pwmpid-150301123045-conversion-gate01
 
Sitrain introdução a ihm
Sitrain introdução a ihmSitrain introdução a ihm
Sitrain introdução a ihm
 
Sitrain visão geral do sistema tia portal
Sitrain visão geral do sistema tia portalSitrain visão geral do sistema tia portal
Sitrain visão geral do sistema tia portal
 

Recently uploaded

Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)simmis5
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 

Recently uploaded (20)

Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 

05 conexão logo! 0 ba7 com ihm (wincc flexible)

  • 1. Page 1 of 11 Connecting an HMI to LOGO! ..0BA7 Connecting an HMI to LOGO! ..0BA7 (WinCC flexible) Problem A program which is used to monitor a fill level, a temperature and addresses a pump that is currently executed in LOGO! ..0BA6, is now to be executed in LOGO! ..0BA7, and the actual values of the fill level and the temperature are also to be displayed on a touch panel. It should also be possible to enable/disable the pump using the touch panel. The status of the pump (ON/OFF) should also be displayed on the panel. Changes in the LOGO! program Open the LOGO! ..0BA6 program with LOGO!Soft Comfort V7.
  • 2. Page 2 of 11 Connecting an HMI to LOGO! ..0BA7 In the device selection ("Tools; Device selection") set the LOGO! ..0BA7 basic device. Configure an Ethernet connection between LOGO! ..0BA7 and the touch panel. Click on "Tools; Ethernet Connections…", assign the IP address as well as the subnet mask for the basic device; create a new connection with a right-click on the Ethernet connections under Peer-to-Peer connections.
  • 3. Page 3 of 11 Connecting an HMI to LOGO! ..0BA7 Open the properties of the connection and configure it as seen in the following figure. To specify which data are to be made available to the HMI, open "Tools; Parameter VM Mapping…" and create a variable table. Notes: Information from the LOGO! program HMI address Parameter to be transferred is a value of a function (e.g. the amplified value of an analog amplifier) is a parameter of a function (e.g. the delay time of an on-delay) 3 21 1 3 2
  • 4. Page 4 of 11 Connecting an HMI to LOGO! ..0BA7 A network input and an XOR have also been added in the program to implement a two-way circuit to turn the pump on and off. The variable V4.0 was set in the properties of the network input because the variable byte 4 is the next free byte in the LOGO! variable memory. Finally download the program with the configuration into the basic device.
  • 5. Page 5 of 11 Connecting an HMI to LOGO! ..0BA7 Settings and configuration in WinCC flexible Creating a new project Open WinCC flexible and create a new project. Inserting a new device Then configure a new device. A KTP600 Basic color PN is used in the example.
  • 6. Page 6 of 11 Connecting an HMI to LOGO! ..0BA7 Creating a connection Create a new connection now. Select the menu item "Connections" in the Project navigation to do so. Add a new connection with a double-click in an empty row. Assign a name to the connection, enter the IP addresses of the HMI device and the controller and select the communication driver. Note: For communication with LOGO! ..0BA7, you must select the communication driver "SIMATIC S7 200". * The IP addresses must be set before directly on the devices. IP address of the HMI* IP address of LOGO!*
  • 7. Page 7 of 11 Connecting an HMI to LOGO! ..0BA7 Creating tags Next open the folder "Tags" in the Project navigation. You can now add HMI tags in the "Tag table" and specify their properties. Notes: The following table shows you to which data the HMI has read and write access: Read Write Inputs (I) x - Outputs (Q) x x Flags (M) x - Variables (V) x x It is theoretically possible to write inputs and bit memories. But this does not make a lot of sense, because LOGO! overwrites them in each cycle. Inputs, outputs and bit memories can be configured in WinCC flexible with the following addresses: I Address Q Address M Address I1 I0.0 Q1 Q0.0 M1 M0.0 I2 I0.1 Q2 Q0.1 M2 M0.1 I3 I0.2 Q3 Q0.2 M3 M0.2 I4 I0.3 Q4 Q0.3 M4 M0.3 I5 I0.4 Q5 Q0.4 M5 M0.4 I6 I0.5 Q6 Q0.5 M6 M0.5 I7 I0.6 Q7 Q0.6 M7 M0.6 I8 I0.7 Q8 Q0.7 M8 M0.7 I9 I1.0 Q9 Q1.0 M9 F1.0 I10 I1.1 Q10 Q1.1 M10 F1.1 I11 I1.2 Q11 Q1.2 M11 M1.2 I12 I1.3 Q12 Q1.3 M12 M1.3 I13 I1.4 Q13 Q1.4 M13 M1.4 I14 I1.5 Q14 Q1.5 M14 M1.5 I15 I1.6 Q15 Q1.6 M15 M1.6 I16 I1.7 Q16 Q1.7 M16 M1.7 I17 I2.0 M17 M2.0 I18 I2.1 M18 M2.1 I19 I2.2 M19 M2.2 I20 I2.3 M20 M2.3 I21 I2.4 M21 M2.4 I22 I2.5 M22 M2.5 I23 I2.6 M23 M2.6 I24 I2.7 M24 M2.7 M25 M3.0 M26 M3.1 M27 M3.2
  • 8. Page 8 of 11 Connecting an HMI to LOGO! ..0BA7 Configuring screens To configure screens, open the "Screens" folder in the Project navigation. The root screen is automatically generated when you create the project as "Screen_1". Three screens (start screen, fill level and temperature) are created in the example. Add two more screens with a double-click. Open "Screen_1" and create three buttons in it. One for switching to "Screen_2", the other for switching to "Screen_3". Configure the third button to exit Runtime. To assign an event to a button, select the "Events" window under "Properties". Root screen with three buttons Properties of a button
  • 9. Page 9 of 11 Connecting an HMI to LOGO! ..0BA7 Now open "Screen_2". This screen displays the fill level and the pump status and is also used to control the pump. That is why you enter a bar and two buttons as well as a circle into the screen. The bar is linked to the "Fill level" tag in the properties and the scale is adapted for reading the values. Button 1 is to be used to switch to the root screen. Configure this step in the properties of the button under "Events". The circle is used to show the status of the pump. The pump can be enabled/disabled with button 2. Screen 2 with a bar and a button Properties of the bar
  • 10. Page 10 of 11 Connecting an HMI to LOGO! ..0BA7 Properties of the circle Properties of the button (Pump ON/OFF) Now open "Screen_3". This screen displays the temperature curve as well as the current temperature. Add a trend display, an I/O field and a button to the screen. The trend view and the I/O field are linked to the "Temperature" tag and the scale of the trend is adapted for reading the values. The mode of the I/O field is set to output. The button is to be used to switch to the root screen. Screen 3 with a trend display, an input/output field and a button
  • 11. Page 11 of 11 Connecting an HMI to LOGO! ..0BA7 Properties of the I/O field Device Settings Select the menu item "Device Settings" in the Project navigation to edit the settings of HMI device. Here you can do the general settings as well as settings for screens, keyboard, alarms, user administration and language & font. Testing the configuration You can start testing your screens and settings during configuration. Click on the icon in the toolbar to start the Runtime simulation. Note: If the controller is connected to the PC, you can use the process values from the controller for the simulation. You must, however, set the access point S7ONLINE under Control Panel; Setting PG/PC interface. You can also simulate the tags with the tag simulator. You open it with a click on the symbol below.