Blog

What is PLC? – About PLC Systems – FULTEK Industrial

Posted by on Dec 31, 2018 in PLC | 0 comments

What is PLC? – About PLC Systems – FULTEK Industrial

PLC stands for Programmable Logic Controller ”. It is the foundation of industrial automation systems. There is almost no automation work without PLC. It consists of PLC editor software (program running on your computer) and firmware (Operating system installed in the chip or board). PLC code is prepared in ladder language with PLC editor program.

read more

What is SCADA? – About SCADA Software

Posted by on Dec 31, 2018 in Scada | 0 comments

What is SCADA? – About SCADA Software

Supervisory control and data acquisition (SCADA) is a system of software. In automation projects, PLCs and other automatic devices automatically perform the necessary control operations.

read more

Version History

Posted by on Dec 1, 2018 in Scada | 2 comments

5.5.9(24/01/2023):Added six digit Modbus address system. 5.5.8(09/04/2021): Some bugs have been resolved. Performance has been improved. Excel operations have been accelerated. 5.5.7(09/04/2020): Some bugs have been resolved. 5.5.6(30/07/2019): Modbus TCP Slave protocol added. With this addition, a secondary modbus slave address can be defined for all tags. And Modbus TCP master devices are communicated. 5.5.5(20/07/2019): Some bugs have been resolved. 5.5.4(25/06/2019): Some bugs have been resolved. We have removed the need for administrator...

read more

S7-1200 Plc Profinet Protocol

Posted by on Jan 16, 2015 in Scada | 0 comments

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 access with Put/Get communication from remote partner” check box. Ensure that any Data Blocks that need to be accessed have the “Accessible...

read more

Redundant

Posted by on Oct 8, 2013 in Scada | 0 comments

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 the other partner communicates. It gets all data from the other partner. If first partner disables for some reason the other one takes the communication. Thus always...

read more

WinTr scada version 5.0.0 features

Posted by on Feb 21, 2013 in Scada | 0 comments

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 allows working on multiple screens simultanously. 5. Screen Designer performance increased. Copy/Paste feature updated. Object moving speed increased. 6....

read more

Script for opening and closing SCADA pages

Posted by on Oct 29, 2012 in Scada | 0 comments

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 msgbox(ScreenName) End Sub End Class End Namespace Another screen can be opened with similar script. Specify ScreenName. ScreenName = “Screen_2”...

read more

How to calibrate tag in scada

Posted by on Apr 11, 2012 in Scada | 0 comments

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

Scada Ip Camera

Posted by on Mar 29, 2012 in Scada | 0 comments

WinTr scada show ip camera or web site script: Imports System Imports System.IO Imports System.Windows.Forms Imports Microsoft.VisualBasic Namespace WinTr Public Class MainClass Public Sub Load Dim fr as new form Dim web_browser As New WebBrowser web_browser.Navigate(“http://www.fultek.com.tr”) ‘Url addres or Ip camera Ip addres. web_browser.Dock = DockStyle.Fill fr.Controls.Add(web_browser) fr.Height = 600 fr.Width = 800 fr.show() End Sub End Class End...

read more

Scada Webserver

Posted by on Mar 14, 2012 in Scada | 0 comments

Web Server module, which located in Control Panel, is used for remotely displaying WinTr Screens by using Web Browsers such as Internet Explorer, Firefox …etc. This can be made by specifying WinTr as Web Server. Then Screens can be accessed from any computer that has internet connection by typing http://IP_Address:Port_Number to browser’s address bar.   WinTr Scada creating dynamicly web page, under the project folder. Main page address example: “C:/Scada/project folder/WWWRoot/index.html” other page address:...

read more