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

Visual Programming
Visual ProgrammingVisual Programming
Visual ProgrammingBagzzz
 
130297267 transformations
130297267 transformations130297267 transformations
130297267 transformationsSunil Pandey
 
Visual Basic Programming
Visual Basic ProgrammingVisual Basic Programming
Visual Basic ProgrammingOsama Yaseen
 
Cis 170 Education Organization / snaptutorial.com
Cis 170 Education Organization / snaptutorial.comCis 170 Education Organization / snaptutorial.com
Cis 170 Education Organization / snaptutorial.comBaileya126
 
Visual basic 6.0
Visual basic 6.0Visual basic 6.0
Visual basic 6.0sanket1996
 
CIS 170 Exceptional Education - snaptutorial.com
CIS 170   Exceptional Education - snaptutorial.comCIS 170   Exceptional Education - snaptutorial.com
CIS 170 Exceptional Education - snaptutorial.comDavisMurphyB33
 
Introduction to Silverlight
Introduction to SilverlightIntroduction to Silverlight
Introduction to SilverlightEd Donahue
 
Abap sap 101_beginners_2_04
Abap sap 101_beginners_2_04Abap sap 101_beginners_2_04
Abap sap 101_beginners_2_04IT
 
Working with visual basic applications
Working with visual basic applicationsWorking with visual basic applications
Working with visual basic applicationsSara Corpuz
 
Introduction to visual basic programming
Introduction to visual basic programmingIntroduction to visual basic programming
Introduction to visual basic programmingRoger Argarin
 
CIS 170 Education Specialist / snaptutorial.com
CIS 170  Education Specialist / snaptutorial.comCIS 170  Education Specialist / snaptutorial.com
CIS 170 Education Specialist / snaptutorial.comMcdonaldRyan138
 
Visual basic 6 black book
Visual basic 6 black bookVisual basic 6 black book
Visual basic 6 black bookAjay Goyal
 
Visual Basic IDE Introduction
Visual Basic IDE IntroductionVisual Basic IDE Introduction
Visual Basic IDE IntroductionAhllen Javier
 

What's hot (20)

Visual Programming
Visual ProgrammingVisual Programming
Visual Programming
 
130297267 transformations
130297267 transformations130297267 transformations
130297267 transformations
 
Vb tutorial
Vb tutorialVb tutorial
Vb tutorial
 
Visusual basic
Visusual basicVisusual basic
Visusual basic
 
Visual Basic Controls ppt
Visual Basic Controls pptVisual Basic Controls ppt
Visual Basic Controls ppt
 
Meaning Of VB
Meaning Of VBMeaning Of VB
Meaning Of VB
 
Vb introduction.
Vb introduction.Vb introduction.
Vb introduction.
 
Visual Basic Programming
Visual Basic ProgrammingVisual Basic Programming
Visual Basic Programming
 
Cis 170 Education Organization / snaptutorial.com
Cis 170 Education Organization / snaptutorial.comCis 170 Education Organization / snaptutorial.com
Cis 170 Education Organization / snaptutorial.com
 
Visual basic 6.0
Visual basic 6.0Visual basic 6.0
Visual basic 6.0
 
CIS 170 Exceptional Education - snaptutorial.com
CIS 170   Exceptional Education - snaptutorial.comCIS 170   Exceptional Education - snaptutorial.com
CIS 170 Exceptional Education - snaptutorial.com
 
Vb basics
Vb basicsVb basics
Vb basics
 
Introduction to Silverlight
Introduction to SilverlightIntroduction to Silverlight
Introduction to Silverlight
 
Abap sap 101_beginners_2_04
Abap sap 101_beginners_2_04Abap sap 101_beginners_2_04
Abap sap 101_beginners_2_04
 
Working with visual basic applications
Working with visual basic applicationsWorking with visual basic applications
Working with visual basic applications
 
Introduction to visual basic programming
Introduction to visual basic programmingIntroduction to visual basic programming
Introduction to visual basic programming
 
CIS 170 Education Specialist / snaptutorial.com
CIS 170  Education Specialist / snaptutorial.comCIS 170  Education Specialist / snaptutorial.com
CIS 170 Education Specialist / snaptutorial.com
 
Visual basic 6 black book
Visual basic 6 black bookVisual basic 6 black book
Visual basic 6 black book
 
Vb unit t 1.1
Vb unit t 1.1Vb unit t 1.1
Vb unit t 1.1
 
Visual Basic IDE Introduction
Visual Basic IDE IntroductionVisual Basic IDE Introduction
Visual Basic IDE Introduction
 

Viewers also liked

Viewers also liked (16)

As interface system-manual-2008-11_x-2010-09_en-us
As interface system-manual-2008-11_x-2010-09_en-usAs interface system-manual-2008-11_x-2010-09_en-us
As interface system-manual-2008-11_x-2010-09_en-us
 
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
 
Gesamtdoku eib a4e
Gesamtdoku eib a4eGesamtdoku eib a4e
Gesamtdoku eib a4e
 
Taller 2
Taller 2Taller 2
Taller 2
 
Social Commerce
Social CommerceSocial Commerce
Social Commerce
 
Logo e 97
Logo e 97Logo e 97
Logo e 97
 
23588559 logo set18_opto_v2_0_en
23588559 logo set18_opto_v2_0_en23588559 logo set18_opto_v2_0_en
23588559 logo set18_opto_v2_0_en
 
Adaptador usb a mpi
Adaptador usb a mpiAdaptador usb a mpi
Adaptador usb a mpi
 
Logo e 96
Logo e 96Logo e 96
Logo e 96
 
Tiang cengal
Tiang cengalTiang cengal
Tiang cengal
 
Logo e 09_99
Logo e 09_99Logo e 09_99
Logo e 09_99
 
Manual logo 0 ba5 port ma_ind1
Manual logo 0 ba5 port ma_ind1Manual logo 0 ba5 port ma_ind1
Manual logo 0 ba5 port ma_ind1
 
Hensley, Marcus
Hensley, MarcusHensley, Marcus
Hensley, Marcus
 
07 comunicação mestre escravo
07 comunicação mestre escravo07 comunicação mestre escravo
07 comunicação mestre escravo
 
Manual logo! 0_ba7_en
Manual logo! 0_ba7_enManual logo! 0_ba7_en
Manual logo! 0_ba7_en
 
Lesiones del canal de parto
Lesiones del canal de partoLesiones del canal de parto
Lesiones del canal de parto
 

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_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
 
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
 
BOTTLE LINE SIMULLATION IN LOGIXPRO
BOTTLE LINE SIMULLATION IN LOGIXPROBOTTLE LINE SIMULLATION IN LOGIXPRO
BOTTLE LINE SIMULLATION IN LOGIXPROMohan Tangudu
 
Motion-Programming.pdf
Motion-Programming.pdfMotion-Programming.pdf
Motion-Programming.pdfPhilipKang11
 
Software engineering modeling lab lectures
Software engineering modeling lab lecturesSoftware engineering modeling lab lectures
Software engineering modeling lab lecturesmarwaeng
 
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 ManualDavid 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.docxransayo
 
Containers Lab
Containers Lab Containers Lab
Containers Lab Dev_Events
 
222066369 clad-study-guide
222066369 clad-study-guide222066369 clad-study-guide
222066369 clad-study-guidehomeworkping9
 
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
 
WECON Remote Access User Manual
WECON Remote Access User ManualWECON Remote Access User Manual
WECON Remote Access User ManualLily Zheng
 

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
 
WECON Remote Access User Manual
WECON Remote Access User ManualWECON Remote Access User Manual
WECON Remote Access User Manual
 

More from Marcio Miranda

More from Marcio Miranda (20)

Pi logo csm12-24-86
Pi logo csm12-24-86Pi logo csm12-24-86
Pi logo csm12-24-86
 
Redes ind sist-super-u1_avaliacao-grupo
Redes ind sist-super-u1_avaliacao-grupoRedes ind sist-super-u1_avaliacao-grupo
Redes ind sist-super-u1_avaliacao-grupo
 
Manual pt pt
Manual pt ptManual pt pt
Manual pt pt
 
Logo system manual_en-us_en-us
Logo system manual_en-us_en-usLogo system manual_en-us_en-us
Logo system manual_en-us_en-us
 
Pi logo csm230-86
Pi logo csm230-86Pi logo csm230-86
Pi logo csm230-86
 
Pi logo csm230-86 (1)
Pi logo csm230-86 (1)Pi logo csm230-86 (1)
Pi logo csm230-86 (1)
 
Manual logo 0 ba4 port ma_ind1
Manual logo 0 ba4 port ma_ind1Manual logo 0 ba4 port ma_ind1
Manual logo 0 ba4 port ma_ind1
 
Manual pt pt.pdf1
Manual pt pt.pdf1Manual pt pt.pdf1
Manual pt pt.pdf1
 
Pi logo csm12-24-86 (1)
Pi logo csm12-24-86 (1)Pi logo csm12-24-86 (1)
Pi logo csm12-24-86 (1)
 
Logo p 09_99
Logo p 09_99Logo p 09_99
Logo p 09_99
 
Guia de primeiros passos do logo!
Guia de primeiros passos do logo!Guia de primeiros passos do logo!
Guia de primeiros passos do logo!
 
Manual logo ago_13
Manual logo ago_13 Manual logo ago_13
Manual logo ago_13
 
Manual logo hot
Manual logo hotManual logo hot
Manual logo hot
 
Logo!
Logo!Logo!
Logo!
 
Gesamtdoku eib a2e
Gesamtdoku eib a2eGesamtdoku eib a2e
Gesamtdoku eib a2e
 
Logo 0500 en
Logo 0500 enLogo 0500 en
Logo 0500 en
 
Cm eib manual_201009_en
Cm eib manual_201009_enCm eib manual_201009_en
Cm eib manual_201009_en
 
1401 (manual do logo) (2)
1401 (manual do logo) (2)1401 (manual do logo) (2)
1401 (manual do logo) (2)
 
Comunicao industrial
Comunicao industrialComunicao industrial
Comunicao industrial
 
Apostila2 clp logo
Apostila2 clp logoApostila2 clp logo
Apostila2 clp logo
 

Recently uploaded

SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...Pooja Nehwal
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...anjaliyadav012327
 

Recently uploaded (20)

SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
 

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.