SlideShare a Scribd company logo
1 of 12
Download to read offline
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

Simatic getting-started-pcs7
Simatic getting-started-pcs7Simatic getting-started-pcs7
Simatic getting-started-pcs7
ionut grozav
 
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
 
Tai lieu plc s7 300
Tai lieu plc s7 300Tai lieu plc s7 300
Tai lieu plc s7 300
Bùi Thể
 
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
 
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

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
 

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

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
 
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
 
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
 
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

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

Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
dharasingh5698
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Recently uploaded (20)

Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptx
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
 
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
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
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 

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.