FULMATIC 7 PLC WEBSERVER
In this section, we will see how to change to status of an output of plc with feature Fulmatic7 PLC Webserver. In this application explaining of a pump status as started or stopped. Status of pump can see from image area by changing pump color. And also status can see as an text on textbox, which is under the image area. Required html file and image files must be loaded to the plc server memory area. Here you can get the files that you need to load into the plc server memory. Plc webserver address is entered into a browser and this file is...
read moreWhat 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 moreWhat 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 moreVersion History
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 moreS7-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 access with Put/Get communication from remote partner” check box. Ensure that any Data Blocks that need to be accessed have the “Accessible...
read moreRedundant
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 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 allows working on multiple screens simultanously. 5. Screen Designer performance increased. Copy/Paste feature updated. Object moving speed increased. 6....
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 msgbox(ScreenName) End Sub End Class End Namespace Another screen can be opened with similar script. Specify ScreenName. ScreenName = “Screen_2”...
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