SlideShare a Scribd company logo
Page 1 of 12 Connecting an HMI to LOGO! ..0BA7
Connecting an HMI to LOGO! ..0BA7 (WinCC Basic V11)
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 12 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 12 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 12 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 12 Connecting an HMI to LOGO! ..0BA7
Settings and configuration in WinCC Basic V11
Creating a new project
Open WinCC Basic V11 and create a new project.
Inserting a new device
Then configure a new device. A KTP600 Basic PN is used in the example.
Page 6 of 12 Connecting an HMI to LOGO! ..0BA7
Creating a connection
Open the Project view with a double-click on the device and configure the connection. Select
the menu item "Connections" in the Project navigation to do so.
Add a new connection with a double-click on "Add". 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 12 Connecting an HMI to LOGO! ..0BA7
Creating tags
Next open the folder "HMI tags" in the Project navigation. You can now add HMI tags in the
"Default 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 Basic V11 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 12 Connecting an HMI to LOGO! ..0BA7
In WinCC flexible 2008, E and A is used for tag addresses instead of I and Q.
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 12 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 12 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 12 Connecting an HMI to LOGO! ..0BA7
Properties of the I/O field
Runtime settings
Select the menu item "Runtime settings" in the Project navigation to edit the Runtime settings.
Here you can make the general settings as well as settings for screens, keyboard, alarms,
user administration and language & font.
Page 12 of 12 Connecting an HMI to LOGO! ..0BA7
Testing the configuration
You can start testing your screens and settings during configuration. Open the shortcut menu
with a right-click on your device. Select "Start simulation".
You can also start simulation with a click on the icon in the toolbar.
Another option for starting simulation is available in the menu bar. Here you open "Online;
Simulation; Start".
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 "Online; Simulation; With
tag simulator" in the menu bar.

More Related Content

What's hot

SIEMENS S7-300c.ppt
SIEMENS S7-300c.pptSIEMENS S7-300c.ppt
SIEMENS S7-300c.ppt
Sidharth Mohapatra
 
Simatic getting-started-pcs7
Simatic getting-started-pcs7Simatic getting-started-pcs7
Simatic getting-started-pcs7
ionut grozav
 
Automation Studio
Automation StudioAutomation Studio
Automation Studio
Roque Ramos
 
105996292 electrical-control-automation-studio
105996292 electrical-control-automation-studio105996292 electrical-control-automation-studio
105996292 electrical-control-automation-studio
Tùng Nguyễn
 
Simaticpcs7 stpcs71 complete_english_2011
Simaticpcs7 stpcs71 complete_english_2011Simaticpcs7 stpcs71 complete_english_2011
Simaticpcs7 stpcs71 complete_english_2011
Vahid RG-zadeh
 
19 exercises v1.00_en
19 exercises v1.00_en19 exercises v1.00_en
19 exercises v1.00_en
confidencial
 
S7 bas-15
S7 bas-15S7 bas-15
S7 bas-15
confidencial
 
Cp1 e introduction manual
Cp1 e introduction manualCp1 e introduction manual
Cp1 e introduction manual
Dian Herpadiana, S.T.
 
Plc Siemens Training Notes
Plc Siemens Training NotesPlc Siemens Training Notes
Plc Siemens Training Notes
plc_course
 
Ch8 v70 os_en
Ch8 v70 os_enCh8 v70 os_en
Ch8 v70 os_en
confidencial
 
Tai lieu plc s7 300
Tai lieu plc s7 300Tai lieu plc s7 300
Tai lieu plc s7 300
Bùi Thể
 
Siemens s7 300-400-s7 graph for s7-300 400 programming sequential control sys...
Siemens s7 300-400-s7 graph for s7-300 400 programming sequential control sys...Siemens s7 300-400-s7 graph for s7-300 400 programming sequential control sys...
Siemens s7 300-400-s7 graph for s7-300 400 programming sequential control sys...
Dien Ha The
 
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
Tran Thanh
 
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
 
Ch1 2 kb_pcs7_v70_en
Ch1 2 kb_pcs7_v70_enCh1 2 kb_pcs7_v70_en
Ch1 2 kb_pcs7_v70_en
confidencial
 
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
DMC, Inc.
 
Programmable Logic Controllers
Programmable Logic ControllersProgrammable Logic Controllers
Programmable Logic Controllers
Anchit Walia
 
S7-1200 easy_book
S7-1200 easy_bookS7-1200 easy_book
S7-1200 easy_book
quanglocbp
 
PROGRAMMABLE LOGIC CONTROLLERS
PROGRAMMABLE LOGIC CONTROLLERSPROGRAMMABLE LOGIC CONTROLLERS
PROGRAMMABLE LOGIC CONTROLLERS
RAHUL DESHMUKH
 

What's hot (19)

SIEMENS S7-300c.ppt
SIEMENS S7-300c.pptSIEMENS S7-300c.ppt
SIEMENS S7-300c.ppt
 
Simatic getting-started-pcs7
Simatic getting-started-pcs7Simatic getting-started-pcs7
Simatic getting-started-pcs7
 
Automation Studio
Automation StudioAutomation Studio
Automation Studio
 
105996292 electrical-control-automation-studio
105996292 electrical-control-automation-studio105996292 electrical-control-automation-studio
105996292 electrical-control-automation-studio
 
Simaticpcs7 stpcs71 complete_english_2011
Simaticpcs7 stpcs71 complete_english_2011Simaticpcs7 stpcs71 complete_english_2011
Simaticpcs7 stpcs71 complete_english_2011
 
19 exercises v1.00_en
19 exercises v1.00_en19 exercises v1.00_en
19 exercises v1.00_en
 
S7 bas-15
S7 bas-15S7 bas-15
S7 bas-15
 
Cp1 e introduction manual
Cp1 e introduction manualCp1 e introduction manual
Cp1 e introduction manual
 
Plc Siemens Training Notes
Plc Siemens Training NotesPlc Siemens Training Notes
Plc Siemens Training Notes
 
Ch8 v70 os_en
Ch8 v70 os_enCh8 v70 os_en
Ch8 v70 os_en
 
Tai lieu plc s7 300
Tai lieu plc s7 300Tai lieu plc s7 300
Tai lieu plc s7 300
 
Siemens s7 300-400-s7 graph for s7-300 400 programming sequential control sys...
Siemens s7 300-400-s7 graph for s7-300 400 programming sequential control sys...Siemens s7 300-400-s7 graph for s7-300 400 programming sequential control sys...
Siemens s7 300-400-s7 graph for s7-300 400 programming sequential control sys...
 
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
 
CLP S7 300 E S7 400
CLP S7 300 E S7 400 CLP S7 300 E S7 400
CLP S7 300 E S7 400
 
Ch1 2 kb_pcs7_v70_en
Ch1 2 kb_pcs7_v70_enCh1 2 kb_pcs7_v70_en
Ch1 2 kb_pcs7_v70_en
 
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
 
Programmable Logic Controllers
Programmable Logic ControllersProgrammable Logic Controllers
Programmable Logic Controllers
 
S7-1200 easy_book
S7-1200 easy_bookS7-1200 easy_book
S7-1200 easy_book
 
PROGRAMMABLE LOGIC CONTROLLERS
PROGRAMMABLE LOGIC CONTROLLERSPROGRAMMABLE LOGIC CONTROLLERS
PROGRAMMABLE LOGIC CONTROLLERS
 

Viewers also liked

Scl 1e
Scl 1eScl 1e
intouch
intouchintouch
intouch
foryou1010
 
Ch1 1 v70_system_overview_en
Ch1 1 v70_system_overview_enCh1 1 v70_system_overview_en
Ch1 1 v70_system_overview_en
confidencial
 
Ch5 v70 cfc_en
Ch5 v70 cfc_enCh5 v70 cfc_en
Ch5 v70 cfc_en
confidencial
 
Ch3 v70 project_structure_en
Ch3 v70 project_structure_enCh3 v70 project_structure_en
Ch3 v70 project_structure_en
confidencial
 
Ch4 v70 system_configuration_en
Ch4 v70 system_configuration_enCh4 v70 system_configuration_en
Ch4 v70 system_configuration_en
confidencial
 
treinamentos em automacao e solucoes industriais s7 tia 2 simatic s7 porgama...
 treinamentos em automacao e solucoes industriais s7 tia 2 simatic s7 porgama... treinamentos em automacao e solucoes industriais s7 tia 2 simatic s7 porgama...
treinamentos em automacao e solucoes industriais s7 tia 2 simatic s7 porgama...
confidencial
 
Fluxograma processo acucar_alcool_etanol_verde
Fluxograma processo acucar_alcool_etanol_verdeFluxograma processo acucar_alcool_etanol_verde
Fluxograma processo acucar_alcool_etanol_verde
confidencial
 
20 what’s next
20 what’s next20 what’s next
20 what’s next
hassansafa123
 

Viewers also liked (9)

Scl 1e
Scl 1eScl 1e
Scl 1e
 
intouch
intouchintouch
intouch
 
Ch1 1 v70_system_overview_en
Ch1 1 v70_system_overview_enCh1 1 v70_system_overview_en
Ch1 1 v70_system_overview_en
 
Ch5 v70 cfc_en
Ch5 v70 cfc_enCh5 v70 cfc_en
Ch5 v70 cfc_en
 
Ch3 v70 project_structure_en
Ch3 v70 project_structure_enCh3 v70 project_structure_en
Ch3 v70 project_structure_en
 
Ch4 v70 system_configuration_en
Ch4 v70 system_configuration_enCh4 v70 system_configuration_en
Ch4 v70 system_configuration_en
 
treinamentos em automacao e solucoes industriais s7 tia 2 simatic s7 porgama...
 treinamentos em automacao e solucoes industriais s7 tia 2 simatic s7 porgama... treinamentos em automacao e solucoes industriais s7 tia 2 simatic s7 porgama...
treinamentos em automacao e solucoes industriais s7 tia 2 simatic s7 porgama...
 
Fluxograma processo acucar_alcool_etanol_verde
Fluxograma processo acucar_alcool_etanol_verdeFluxograma processo acucar_alcool_etanol_verde
Fluxograma processo acucar_alcool_etanol_verde
 
20 what’s next
20 what’s next20 what’s next
20 what’s next
 

Similar to 04 conexão logo! 0 ba7 com ihm

05 conexão logo! 0 ba7 com ihm (wincc flexible)
05 conexão logo! 0 ba7 com ihm (wincc flexible)05 conexão logo! 0 ba7 com ihm (wincc flexible)
05 conexão logo! 0 ba7 com ihm (wincc flexible)
Marcio Miranda
 
hmi_time_sync_how_to_e
hmi_time_sync_how_to_ehmi_time_sync_how_to_e
hmi_time_sync_how_to_e
Ecuador
 
Vb%20 tutorial
Vb%20 tutorialVb%20 tutorial
Vb%20 tutorial
Satya Prakash
 
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
Oregon FIRST Robotics
 
Plc fatek
Plc fatekPlc fatek
A d swincc15e
A d swincc15eA d swincc15e
A d swincc15e
confidencial
 
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
 
Visual Logic User Guide
Visual Logic User GuideVisual Logic User Guide
Visual Logic User Guide
Programming Techniques and Algorithms
 
BOTTLE LINE SIMULLATION IN LOGIXPRO
BOTTLE LINE SIMULLATION IN LOGIXPROBOTTLE LINE SIMULLATION IN LOGIXPRO
BOTTLE LINE SIMULLATION IN LOGIXPRO
Mohan Tangudu
 
Motion-Programming.pdf
Motion-Programming.pdfMotion-Programming.pdf
Motion-Programming.pdf
PhilipKang11
 
Software engineering modeling lab lectures
Software engineering modeling lab lecturesSoftware engineering modeling lab lectures
Software engineering modeling lab lectures
marwaeng
 
P.N. 4219640_inDex User's Manual
P.N. 4219640_inDex User's ManualP.N. 4219640_inDex User's Manual
P.N. 4219640_inDex User's Manual
David Wise
 
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
ransayo
 
Containers Lab
Containers Lab Containers Lab
Containers Lab
Dev_Events
 
222066369 clad-study-guide
222066369 clad-study-guide222066369 clad-study-guide
222066369 clad-study-guide
homeworkping9
 
Picaxe manual5
Picaxe manual5Picaxe manual5
Picaxe manual5
Richard Wilcamango Salas
 
2 front panel
2  front panel2  front panel
2 front panel
Ankush Jamthikar
 
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
hopTo
 
First fare 2010 lab-view overview
First fare 2010 lab-view overviewFirst fare 2010 lab-view overview
First fare 2010 lab-view overview
Oregon FIRST Robotics
 
Line Graph Analysis using R Script for Intel Edison - IoT Foundation Data - N...
Line Graph Analysis using R Script for Intel Edison - IoT Foundation Data - N...Line Graph Analysis using R Script for Intel Edison - IoT Foundation Data - N...
Line Graph Analysis using R Script for Intel Edison - IoT Foundation Data - N...
WithTheBest
 

Similar to 04 conexão logo! 0 ba7 com ihm (20)

05 conexão logo! 0 ba7 com ihm (wincc flexible)
05 conexão logo! 0 ba7 com ihm (wincc flexible)05 conexão logo! 0 ba7 com ihm (wincc flexible)
05 conexão logo! 0 ba7 com ihm (wincc flexible)
 
hmi_time_sync_how_to_e
hmi_time_sync_how_to_ehmi_time_sync_how_to_e
hmi_time_sync_how_to_e
 
Vb%20 tutorial
Vb%20 tutorialVb%20 tutorial
Vb%20 tutorial
 
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
 
Plc fatek
Plc fatekPlc fatek
Plc fatek
 
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
 
Visual Logic User Guide
Visual Logic User GuideVisual Logic User Guide
Visual Logic User Guide
 
BOTTLE LINE SIMULLATION IN LOGIXPRO
BOTTLE LINE SIMULLATION IN LOGIXPROBOTTLE LINE SIMULLATION IN LOGIXPRO
BOTTLE LINE SIMULLATION IN LOGIXPRO
 
Motion-Programming.pdf
Motion-Programming.pdfMotion-Programming.pdf
Motion-Programming.pdf
 
Software engineering modeling lab lectures
Software engineering modeling lab lecturesSoftware engineering modeling lab lectures
Software engineering modeling lab lectures
 
P.N. 4219640_inDex User's Manual
P.N. 4219640_inDex User's ManualP.N. 4219640_inDex User's Manual
P.N. 4219640_inDex User's Manual
 
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
 
Containers Lab
Containers Lab Containers Lab
Containers Lab
 
222066369 clad-study-guide
222066369 clad-study-guide222066369 clad-study-guide
222066369 clad-study-guide
 
Picaxe manual5
Picaxe manual5Picaxe manual5
Picaxe manual5
 
2 front panel
2  front panel2  front panel
2 front panel
 
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
 
First fare 2010 lab-view overview
First fare 2010 lab-view overviewFirst fare 2010 lab-view overview
First fare 2010 lab-view overview
 
Line Graph Analysis using R Script for Intel Edison - IoT Foundation Data - N...
Line Graph Analysis using R Script for Intel Edison - IoT Foundation Data - N...Line Graph Analysis using R Script for Intel Edison - IoT Foundation Data - N...
Line Graph Analysis using R Script for Intel Edison - IoT Foundation Data - N...
 

More from confidencial

18 syntax rules v1.0
18 syntax rules v1.018 syntax rules v1.0
18 syntax rules v1.0
confidencial
 
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
confidencial
 
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
confidencial
 
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
confidencial
 
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
confidencial
 
12 archiving system v1.00_en
12 archiving system v1.00_en12 archiving system v1.00_en
12 archiving system v1.00_en
confidencial
 
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
confidencial
 
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
confidencial
 
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
confidencial
 
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
confidencial
 
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
confidencial
 
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
confidencial
 
05 project setup v1.00_en
05 project setup v1.00_en05 project setup v1.00_en
05 project setup v1.00_en
confidencial
 
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
confidencial
 
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
confidencial
 
01 introduction v1.00_en
01 introduction v1.00_en01 introduction v1.00_en
01 introduction v1.00_en
confidencial
 
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
confidencial
 
01tiaportal handson-basicov11v2-140421084257-phpapp01
01tiaportal handson-basicov11v2-140421084257-phpapp0101tiaportal handson-basicov11v2-140421084257-phpapp01
01tiaportal handson-basicov11v2-140421084257-phpapp01
confidencial
 
Sitrains7 1200pwmpid-150301123045-conversion-gate01
Sitrains7 1200pwmpid-150301123045-conversion-gate01Sitrains7 1200pwmpid-150301123045-conversion-gate01
Sitrains7 1200pwmpid-150301123045-conversion-gate01
confidencial
 
Sitrain introdução a ihm
Sitrain introdução a ihmSitrain introdução a ihm
Sitrain introdução a ihm
confidencial
 

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
 
01tiaportal handson-basicov11v2-140421084257-phpapp01
01tiaportal handson-basicov11v2-140421084257-phpapp0101tiaportal handson-basicov11v2-140421084257-phpapp01
01tiaportal handson-basicov11v2-140421084257-phpapp01
 
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
 

Recently uploaded

Manufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptxManufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptx
Madan Karki
 
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdfIron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
RadiNasr
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
SUTEJAS
 
Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
mahammadsalmanmech
 
sieving analysis and results interpretation
sieving analysis and results interpretationsieving analysis and results interpretation
sieving analysis and results interpretation
ssuser36d3051
 
Low power architecture of logic gates using adiabatic techniques
Low power architecture of logic gates using adiabatic techniquesLow power architecture of logic gates using adiabatic techniques
Low power architecture of logic gates using adiabatic techniques
nooriasukmaningtyas
 
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming PipelinesHarnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Christina Lin
 
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
awadeshbabu
 
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODELDEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
gerogepatton
 
2. Operations Strategy in a Global Environment.ppt
2. Operations Strategy in a Global Environment.ppt2. Operations Strategy in a Global Environment.ppt
2. Operations Strategy in a Global Environment.ppt
PuktoonEngr
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
IJECEIAES
 
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
Mukeshwaran Balu
 
Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...
IJECEIAES
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
Aditya Rajan Patra
 
Modelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdfModelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdf
camseq
 
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student MemberIEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
VICTOR MAESTRE RAMIREZ
 
Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
Hitesh Mohapatra
 
Series of visio cisco devices Cisco_Icons.ppt
Series of visio cisco devices Cisco_Icons.pptSeries of visio cisco devices Cisco_Icons.ppt
Series of visio cisco devices Cisco_Icons.ppt
PauloRodrigues104553
 
6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)
ClaraZara1
 
basic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdfbasic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdf
NidhalKahouli2
 

Recently uploaded (20)

Manufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptxManufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptx
 
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdfIron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
 
Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
 
sieving analysis and results interpretation
sieving analysis and results interpretationsieving analysis and results interpretation
sieving analysis and results interpretation
 
Low power architecture of logic gates using adiabatic techniques
Low power architecture of logic gates using adiabatic techniquesLow power architecture of logic gates using adiabatic techniques
Low power architecture of logic gates using adiabatic techniques
 
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming PipelinesHarnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
 
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
[JPP-1] - (JEE 3.0) - Kinematics 1D - 14th May..pdf
 
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODELDEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
 
2. Operations Strategy in a Global Environment.ppt
2. Operations Strategy in a Global Environment.ppt2. Operations Strategy in a Global Environment.ppt
2. Operations Strategy in a Global Environment.ppt
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
 
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
 
Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
 
Modelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdfModelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdf
 
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student MemberIEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
 
Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
 
Series of visio cisco devices Cisco_Icons.ppt
Series of visio cisco devices Cisco_Icons.pptSeries of visio cisco devices Cisco_Icons.ppt
Series of visio cisco devices Cisco_Icons.ppt
 
6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)
 
basic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdfbasic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdf
 

04 conexão logo! 0 ba7 com ihm

  • 1. Page 1 of 12 Connecting an HMI to LOGO! ..0BA7 Connecting an HMI to LOGO! ..0BA7 (WinCC Basic V11) 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 12 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 12 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 12 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 12 Connecting an HMI to LOGO! ..0BA7 Settings and configuration in WinCC Basic V11 Creating a new project Open WinCC Basic V11 and create a new project. Inserting a new device Then configure a new device. A KTP600 Basic PN is used in the example.
  • 6. Page 6 of 12 Connecting an HMI to LOGO! ..0BA7 Creating a connection Open the Project view with a double-click on the device and configure the connection. Select the menu item "Connections" in the Project navigation to do so. Add a new connection with a double-click on "Add". 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 12 Connecting an HMI to LOGO! ..0BA7 Creating tags Next open the folder "HMI tags" in the Project navigation. You can now add HMI tags in the "Default 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 Basic V11 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 12 Connecting an HMI to LOGO! ..0BA7 In WinCC flexible 2008, E and A is used for tag addresses instead of I and Q. 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 12 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 12 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 12 Connecting an HMI to LOGO! ..0BA7 Properties of the I/O field Runtime settings Select the menu item "Runtime settings" in the Project navigation to edit the Runtime settings. Here you can make the general settings as well as settings for screens, keyboard, alarms, user administration and language & font.
  • 12. Page 12 of 12 Connecting an HMI to LOGO! ..0BA7 Testing the configuration You can start testing your screens and settings during configuration. Open the shortcut menu with a right-click on your device. Select "Start simulation". You can also start simulation with a click on the icon in the toolbar. Another option for starting simulation is available in the menu bar. Here you open "Online; Simulation; Start". 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 "Online; Simulation; With tag simulator" in the menu bar.