Posts

Showing posts from 2020

Basic Overview of ET200 SP HA

Image
The high-performance I/O system SIMATIC ET 200SP HA – perfectly matched to the requirements of the process industry and with clear advantages wherever ruggedness and maximum availability are important in the process and manufacturing industry. Benefits Availability: Redundancy at the PROFINET interface (S2 or R1) Hot swapping during runtime station expansion possible during runtime Easy to Use: Compact modules with permanent wiring. One terminal block for all 24 V standard signals Tool-free connection system with push-in-terminals Compact Design Compact with up to 56 i/o modules per station High concentration of up to 32 channels on a module that is only 22.5 mm wide System-integrated power bus Seamless integration in SIMATIC PCS new PROFINET IO communication standard Functions Main functions Compact I/O modules Up to 32 channels on a module that is 22.5 mm wide Up to 56 modules per station Perfectly suited for applications in the field Installation up to hazardous zone 2 Extended temp

VBScript

Image
How To read/Write and Transfer Value from One Tag to Another through Vb Script? Firstly Create a Project Module in Global VBscript option of wincc. Create New Project Module where you will be writing script. As per above screenshot you can write the script to transfer value // declare the variable. Dim a Dim b // Assign "a " with tag PLC_Year1" made in the tag connection of wincc consisting of PLC address. Set a = HMIRuntime.Tags("PLC_Year1") a.Read // Assign "b " with tag PLC_Year2" made in the tag connection of wincc consisting of PLC address.  Set b = HMIRuntime.Tags("PLC_Year2") b.Read // Move of value of PLC_year1 to PLC_Year2 b.Value = a.Value // Writing the value to Wincc Tag. b.Write After Script writing, to execute script one option is to execute with button. Create Button in Wincc  Now in Press Left select VBscript option for action while mouse left key is press. Pass procedure call should be done while selecting t