Search the Community

Showing results for tags 'tia portal v13 wincc hmi'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Found 88 results

  1. Hello! I have TIA portal V19 version installed and I have a project with CPU 1513 PN and KTP900 panel. Connection between panel and CPU is not working. With older version, V18 it is working fine. Any ideas?
  2. Hello there, I have installed TIA Portal V16. There is a logic programming language called "Graph" in the siemens TIA Portal. This language is not installed by default in the TIA Portal. How to install that language Graph Language in TIA Portal ? Refer Images:-   https://we.tl/t-BF2PtDcd7W  
  3. Ok I'll try a different angle of attack. I have acquired an S7-1212c unit. It is just too new for my TIA portal, which is V 15.1 The new PLC I have has firmwear 4.5 the TIA portal I have only supports 4.3, I get some errors regarding synconization etc. and it's like there are some tins that don't work. how do I update the TIA portal to the correct firmware I've tried updating the HSP files but it doesn't change anything https://support.industry.siemens.com/cs/document/54163658/how-do-you-update-the-hardware-catalog-in-tia-portal-?dti=0&lc=en-DE
  4. Dear reader, I am writing a C# program using the library  ‘EasyModbus’ that needs to communicate with Siemens WinCC via the connection type ‘Modicon modbus’ I have written a version using the ‘float’ data type in WinCC and that works perfectly. Here my code fragment: Method to convert ‘double’ to bytes in C#: public static byte[] DoubleToModbusFloat(double value) {     byte[] bytes = new byte[4];     float floatValue = (float)value;     int intValue = BitConverter.ToInt32(BitConverter.GetBytes(floatValue), 0);     bytes[0] = (byte)(intValue >> 24);     bytes[1] = (byte)(intValue >> 16);     bytes[2] = (byte)(intValue >> 8);     bytes[3] = (byte)intValue;     return bytes; } Call of the method and loading of the modbus registers in EasyModbus: Bytes = PublicCode.DoubleToModbusFloat(TmpDbl); int n = (int)ModbusStartAddress + ((i - 1) * 2); mb.ModServer.holdingRegisters[n + 1] = (short)((Bytes[0] << 8) + Bytes[1]); mb.ModServer.holdingRegisters[n + 2] = (short)((Bytes[2] << 8) + Bytes[3]); So far so good – this works fine. But I also want to be able to use the ‘Double’ data type in WinCC because I sometimes need more precision than the 7 figures of the ‘float’. I thought it would simply be a case of doubling up the code so I wrote: Method to convert ‘double’ to bytes in C#: public static byte[] DoubleToModbusDouble(double value) {     byte[] bytes = new byte[8];     long intValue = BitConverter.ToInt64(BitConverter.GetBytes(value), 0);     bytes[0] = (byte)((intValue >> 56) & 0xff);     bytes[1] = (byte)((intValue >> 48) & 0xff);     bytes[2] = (byte)((intValue >> 40) & 0xff);     bytes[3] = (byte)((intValue >> 32) & 0xff);     bytes[4] = (byte)((intValue >> 24) & 0xff);     bytes[5] = (byte)((intValue >> 16) & 0xff);     bytes[6] = (byte)((intValue >> 8) & 0xff);     bytes[7] = (byte)(intValue & 0xff);     return bytes; } Call of method and loading of the modbus registers in EasyModbus: Bytes = PublicCode.DoubleToModbusDouble(TmpDbl); int n = (int)ModbusStartAddress + ((i - 1) * 4); mb.ModServer.holdingRegisters[n + 1] = (short)((Bytes[0] << 8) + Bytes[1]); mb.ModServer.holdingRegisters[n + 2] = (short)((Bytes[2] << 8) + Bytes[3]); mb.ModServer.holdingRegisters[n + 3] = (short)((Bytes[4] << 8) + Bytes[5]); mb.ModServer.holdingRegisters[n + 4] = (short)((Bytes[6] << 8) + Bytes[7]); However, this code does not work correctly. I have tried all combinations of byte and word reversal, and whatever I do WinCC either displays nonsensical values or ‘####’ showing that it cannot display the value. I have tried reading as much documentation as I can but it still looks to me as if I am doing the right thing. Also, I have downloaded a number of ‘modbus master’ code examples, and they seem to be able to read the ‘Double’ from my program without any issues. In WinCC I also see that there are two types of double – ‘Double’ and ‘+/- Double’ – I am also unsure as to why this is – there is no ‘+/- Float’ data type, which seems inconsistent to me. I am obviously missing something, but cannot seem to discover what exactly. I hope that someone can point me in the right direction as to what I am doing wrong. Please see attached word file for a picture of the configuration of the connection in WinCC.   Thanks in advance for any help !, Dave Long Double trouble.docx
  5. TIA Portal for beginners

    If you learn more quickly after watching videos about PLC like reading the literature without example, then these videos can help you if you are a complete beginner. Enjoy it  (If this is against the rules of this site then sorry for spam  )   PLC:   1. How to create project in TIA Portal   https://www.youtube.com/playlist?list=PLqYtPgi-xbbgUBs7nrNmq5ManYyQ-hvKK       2. Program blocks   https://www.youtube.com/playlist?list=PLqYtPgi-xbbhlni7Uw9-lfs8UIykpuubF       3. Bit logic operations   https://www.youtube.com/playlist?list=PLqYtPgi-xbbitdaKvFJv9WZEOj7VrMf_0       4. Timer operations   https://www.youtube.com/playlist?list=PLqYtPgi-xbbiaWQL8lXja1_Kd1z-jeDXr       5. Counter operations   https://www.youtube.com/playlist?list=PLqYtPgi-xbbgfyg2dwDiR7xzsaXtdI9xo       6. Comparator operations   https://www.youtube.com/playlist?list=PLqYtPgi-xbbgs-WgOvePyRUKgnDBK-qfx       7. Math operations   https://www.youtube.com/playlist?list=PLqYtPgi-xbbgInRxxraaX6RG5LUS8gcpM       8. Move operations   https://www.youtube.com/playlist?list=PLqYtPgi-xbbjQQEXr_bhzjKvNCjBeS1Zw       9. Conversion operations   https://www.youtube.com/playlist?list=PLqYtPgi-xbbjsjfMUtVn3QQ6MJM7cBpTW       10. Program control operations   https://www.youtube.com/playlist?list=PLqYtPgi-xbbgFtnxDkNZ7Amps67nr-KHX       11. Word logic operations   https://www.youtube.com/playlist?list=PLqYtPgi-xbbh6bGa9bgy6cJhVi-RhF0gH       12. Shift and rotate instructions   https://www.youtube.com/playlist?list=PLqYtPgi-xbbhlUnK9ECCKUccqt91Qsw6e   HMI:   1.       Beginning with HMI devices   https://youtu.be/EF4Qprf0Mn8   2.       Basic work with screens   https://www.youtube.com/playlist?list=PLqYtPgi-xbbgPAApJCAGcPZOHViTAT9C1   3.       Basic screen objects           4.    Elements objects   https://www.youtube.com/playlist?list=PLqYtPgi-xbbgOSznFb03Rr_St-2WFcygo         5.       HMI Alarms   https://www.youtube.com/playlist?list=PLqYtPgi-xbbi_V7XENgupV7HFjOJI7Yes   6.       User administration   https://www.youtube.com/playlist?list=PLqYtPgi-xbbgDP9dfAOkW3eodC5aH0kmR         7.       Scheduled tasks   https://www.youtube.com/playlist?list=PLqYtPgi-xbbjsaMlovHL2BDrju8kKgkZi     OTHER: Siemens PLC - Hardware configuration (SIMATIC S7-300) https://youtu.be/WVkAGKsxftw     Siemens HMI/PLC - communication (Basic Example) https://youtu.be/AcN50TShHgY   Siemens PLC - Firmware upgrade/downgrade via TIA Portal https://youtu.be/qEsS7RR7QIw   Siemens HMI/PLC - Recipes (Basic Example 1/2) https://youtu.be/wLmH-QT3T9U   Siemens HMI/PLC - Recipes (Basic Example 2/2) https://youtu.be/_2K6l7dYuqY   Siemens PLC - Upload program from PLC to TIA portal (PC) https://youtu.be/igw-4CxjnLw   Siemens PLC - Add and install GSD file in TIA Portal https://youtu.be/LJKUzv3Zykw   Siemens PLC - Activate and work with Web Server in TIA Portal (Part 1/2) https://youtu.be/WCpiej4S8-U   Siemens PLC - Activate and work with Web Server in TIA Portal (Part 2/2) https://youtu.be/xl4pxLK0CDY   Siemens PLC - Scaling/Converting Analog Input/Output (0-20mA to 4-20mA and vice versa) https://youtu.be/BOjFlhAwO0k   Siemens HMI/PLC - Linear scaling of HMI Tag (PLC/HMI tag scaling) https://youtu.be/XBUknb3JDfE   Siemens HMI - Changing of Date/Time format (12/24 hours format) https://youtu.be/bCVKFrLwzWA   Siemens PLC - Configuring and commissioning of SIRIUS ACT (PROFINET IO) https://youtu.be/yIW6kta34_s   and more...      
  6. Hello,           I have installed Simatic S7 5.6 and WinCC Flexible 2008 Runtime SP5 on a Windows 7 computer.  Running Simatic Manager brings up the error message 'Simatic WinCC flexible  -  Older version or not fully installed'            as far as I know, WinCC 2008 is compatible with S7 5.6 and I have installed both fully.  Does anyone have any ideas on how to get this running? Thanks, Rath
  7. Hello,           I have installed Simatic S7 5.6 and WinCC Flexible 2008 Runtime SP5 on a Windows 7 computer.  Running Simatic Manager brings up the error message 'Simatic WinCC flexible  -  Older version or not fully installed'            as far as I know, WinCC 2008 is compatible with S7 5.6 and I have installed both fully.  Does anyone have any ideas on how to get this running? Thanks, Rath
  8. Hi!Are you tired of skimming through menu bar items in TIA Portal in order to finally find that one command that you were looking for?So was I!So I´ve composed a handy one-page list of keyboard shortcuts to execute those commands in no time (FACT - 99% of them are executed using your left pinky and your left/right index finger ). Check out the list of keyboards shortcuts in the PDF attached below.For more practical tips and tricks on TIA Portal PLC programming -> go and have a look at my video course by clicking on the link below:https://lnkd.in/eipFaGm   Keyboard Shortcuts.pdf
  9. Export/Import PDL WinCC

    Hi all, Do you know a way to export/import the graphics screens (PDL) from a human understandable language (XML, CSV, JSON, etc)?? Thanks!
  10. Hi there,  I'm downscaling my business in Western Canada and have some legit software licenses I'm going to sell. This was my first thought as to where I might explore selling/transferring licenses, but I'm also open to polite suggestions.  I have: one Studio 5000 Full Edition ESD Software (9324-RLD600ENE) (software & valid license) two Siemens TIA portal software packages & licenses with Step7 v14sp1 and WinCC Comfort Advanced V14sp1 (software & USB dongles) an unused Simatic WinCC SmartServer license (software & USB dongle) one Progea Movicon 11 Scada/HMI developer license (software & USB dongle) one Progea Movicon NExT DEV3-FL (developer license) (software & USB dongle) an unused Progea Movicon NExT Scada license (RTCS3-F-1K+WB3-1K) for site install (software & USB *unused) one package of Schneider Movicon with license (Vijeo Designer, Unity Pro S, and SoMachine) (software & USB keys) Thanks! Mark
  11. Hello all I would like to know what kind of equipment you use as PLC programmers or as technologists of automation and processes. What do you recommend for using programs such as TIA and other Siemens software, Studio 5000, IQ works and other automation programs. Please give your opinions on what you use and what you would use. greetings to all and all the best Klemen
  12. WinCC WWTP Example Screenshots

    Hello everyone. I work with PLC's and SCADA for many years developing industrial applications. Now, for the first time, I have to develop a control system with Siemens PLC's and WinCC for a WWTP. Can some one share WinCC screenshost of simillar applications just to get an idea on what and how put things on screen. Thank's in advance.
  13. Siemens and SCADA system

    Hello !  I have a problem. i'm new in tia portal and all siemens PLC. I woudl like to connect my Siemens s7-1200 CPU 1215DC/DC/DC and HMI KTP700 Basic PN to a SCADA system. Can someone give me some advice? Thank you in advance. i use tia portal v17
  14. Dear Collegues, There are several links with discounts / promotions given below for you to join Siemens PLC / HMI / DRIVE trainings released by myself. I hope that will be useful for you to learn new topics related with your application field.  Also i will be glad if you share these links with your friends who needed, it would be helpful for me for sure to reach more people.  Siemens Simatic TIA Portal Programming 1 V17 https://www.udemy.com/course/siemens-simatic-tia-portal-programming-1-v17/?couponCode=584E8CA038C8EE7C8ADE 100 redemption limited / 30 days Free Siemens Simatic Manager S7 System and Programming 1 https://www.udemy.com/course/siemens-simatic-manager-s7-system-and-programming-1/?couponCode=8888E2A3A67D6917068B 100 redemption limited / 30 days Free Siemens Simatic Manager S7 Applications And Examples 1 https://www.udemy.com/course/siemens-simatic-manager-s7-applications-and-examples-1/?couponCode=A3D5633D7ADE64204100 100 redemption limited / 30 days Free Siemens Simatic Manager S7 System and Programming 2 https://www.udemy.com/course/siemens-simatic-manager-s7-system-and-programming-2/?couponCode=6183387F6558383C6D31 unlimited redemption / 5 days Best price Siemens Simotion System And Programming Course https://www.udemy.com/course/siemens-simotion-system-and-programming-course/?couponCode=A66B21332C52770D8C06 unlimited redemption / 30 days Custom discount Siemens Sinamics S120 Service and Commissioning https://www.udemy.com/course/siemens-sinamics-s120-service-and-commissioning/?couponCode=0BC89844A291C8C539D3 unlimited redemption / 5 days Best price with best regards. 
  15. Siemens PCS7 v9.1

    We need to upgrade Siemens PCS7 V8.1 to PCS7 V9.1. Can we able to do so without upgrading the windows of the EWS/OWS. If Yes then How we can do it and If no then what is the replacement? Please answer that question with best of your experience. Thanks in advance. 
  16. aide

    bonjour  j'ai besoin de logiciel tia portal v17 et step7 et wincc flixible pour windows 10  merci de m'aider
  17. tia portal v17

    Bonjour  j'ai besoin de logiciel tia portal v17 et step7 et wincc flixible pour windows 10  merci de m'aider
  18. tia portal v17

    Bonjour  j'ai besoin de logiciel tia portal v17 et step7 et wincc flixible pour windows 10  merci de m'aider
  19. tia portal v17

    Bonjour  j'ai besoin de logiciel tia portal v17 et step7 et wincc flixible pour windows 10  merci de m'aider
  20. Good Day All, I'm working on an alarm system program that an integrator did several years ago. The PLC is a S7-1200, and I'm using TIA Portal 15.1. The program uses BACnet to comm with a Trane chiller system. I need to make an input change (change input from one remote rack to another one) in another unrelated portion of the program. When I connect to the system, it come up with a pop up saying I'm missing the BACnet module and programming may be limited. Will it cause an issue if I make my input change and download software to the PLC, even thought I don't have the BACnet module for Portal?  
  21. Open data log in HMI

    Hi there! I have S7-1200 controller connected to a Comfort Panel. The machine has some pressure and temp sensors, as long as many valves and other stuff. I generate a daily datalog with some of those variables but, the thing is, I've been trying to figure out how to show these data in the HMI without using a trend viewer. I don't know if it's possible, but I want to be able to see what valves were open (for example) the day DD/MM/YYYY at HH:MM:SS, using the generated data log, kind of knowing the state of single bits at different past moments. I've been searching the web but I didn't find something exactly like this, don't know if I'm doing it properly so I'd like to know if you have done this or you can throw some light on the topic. Thanks in advance and hope you can help me!
  22. Hello, i want to create a connection between SIMATIC Manager Step7 and Wincc Explorer to share tags.  I configured wincc to PLCSIM MPI (Create new MPI connection in Tags management) connection but when i active Wincc explorer the connection gone in Step 7 and PLCSIM and when i want to charge my config in the PLCSIM that message 33:17135 shown (SIN_SERV not started)
  23. Siemens WinCC 7.0 SP3 SCADA Value Freezing

    Dear All, We are using Siemens WinCC 7.0 SP3 SCADA software. We are using two Redundant SCADA Computers that are communicating with PLC (CP-343 module) via Ethernet. One Ethernet cable from each PC is connected to Cisco Ethernet Switch and one Ethernet cable from the Cisco Switch is connected with CP-343 Siemens Ethernet Module.  The problem is after every 75 hours one PC value become still (Freeze).Only One system values freeze at a time. If i restart the system the problem is resolved. Please help to resolve this problem. Thanks  
  24. S7 200 SEG INSTRUCTION

    Hello guys. We are trying to replace a S7 200 PLC at our station with S7 1200.  We are reading the program on the S7 200 and recreating the same on the S7 1200. However, we have encountered the SEG  instruction used several times in the S7 200 (microwin) program. And the SEG instruction is not available in TIA Portal (we are using TIA 11) for the S7 1200. We have tried to read the s7 200 system manual but the explanation of the instruction is not sufficient to help recreate it. Could anyone know how we can create our own equivalent of the SEG instruction? If anyone has the SEG instruction already created as a program, it would be very helpful. Thank you.  
  25. Hi all  I need help with communication between Mitsubishi L06CPU-P with Siemens S7-1500 by Modbus TCP. It's necessary to send data from L06CPU to S7-1500, but I don't know anything about mitsubishi and gx works2.  Picked up some pics how I did it, but I didn't verified how it works. Can anybody help me with this? https://ibb.co/8KDmg5x https://ibb.co/Jm8shCx   edited: I also found LQnUDEModbusTCP_GW2_with_FC_V120 library, but how it works I dont know