S7-1200 Plc Profinet Protocol
S7-1200 Profinet communication settings for WinTr SCADA. Open the PLC project in the S7 TIA Portal software. Navigate to the PLC Properties. On the General Tab of the Properties page select Protection. Ensure that the “Full access (no protection)” radio button is selected. (The Siemens TCP/IP Ethernet driver does not currently support the use of a password.) Check the “Permit...
Read MoreRedundant
Scada Redundancy What is WinTr Scada Redundant? It is a full backed-up operation mode of two SCADA station. Server-Client mode is different than Redundant. Clients reads/writes all or specific Tag values from the server. Client and Server communicates automation devices separetly. However redundant mode works %100 backed-up notion. Redundant partner doesn’t communicates with the PLCs while...
Read MoreWinTr scada version 5.0.0 features
1. All Scada functions upgraded, tested and performances increased. Many Scada features updated unlimitedly. 2. Shutdown command added. Operators can shutdown the scada completely with this command without exposing the development page. 3. The feature that allows running projects on the small screens which intended for bigger screens has added. 4. Multiple Screen Designer has added which...
Read MoreScript for opening and closing SCADA pages
Open SCADA page can be read or written with the script. You can replace scada page name with the desired name. ScreenName variable can be used for for this purpose. Following script gets last opened screen name. Imports System Imports System.IO Imports System.Windows.Forms Imports Microsoft.VisualBasic Namespace WinTr Public Class MainClass Public ScreenName as String Public Sub Load...
Read MoreHow to calibrate tag in scada
Scada calibrate script comma tag from decimal tag: Imports System Imports System.IO Imports System.Windows.Forms Imports System.VisualBasic Namespace WinTr Public Class MainClass Public Tag_1 As Uint16 Public Tag_2 As Single Public Sub Load Tag_2 = Val(Tag_1/10) End Sub End Class End Namespace
Read More