Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Lixoudis

Pages: [1]
1
Support Questions / Omron Timers with Fins Command
« on: December 11, 2017, 01:30:00 PM »
Hello guys a quick question is it possible to write to PV of timer in order to set it from HMI?

2
Support Questions / Read/Write floating values in omron plc
« on: December 07, 2017, 12:09:14 PM »
Hello guys I have a question regarding the omron fins serial driver. Am using a CP1L Plc and I try to read or write float numbers to Plc with no luck. Is it possible to do it or not? For the reading part I have succeeded to read them by convert the real number to int inside the ladder and then just putting on the analog display value a scale factor but for the write I haven't found any way to do it. I await your suggestions

3
Support Questions / Data Subscriber question
« on: September 26, 2017, 04:51:30 PM »
Hello guys  i have a question on data subscriber 2. The question is if the poll rate is working because i want to pull data every minute for around 11 tags and if yes the time is in milliseconds.Am using ethernet CLX driver for communication

4
Open Discussion / Problem with basic indicator and DataSubscriber1
« on: September 23, 2017, 03:41:36 AM »
Hello guys am fairly new on advanced HMI. First i will like to thank Archie for a well made program.
The issue am facing is that i built an hmi for remote viewing of a machine.Now i have a situation that i want to have a basic indicator with on(text shown indicator),green color status and off(text shown indicator),red color status. I have tried and use a DataSubscriber1 that is connected with the appropriate tag and then used the below code to have the affect i want but it didn't work.Any thoughts on this problem.


Code: [Select]
Private Sub DataSubscriber1_DataChanged(sender As Object, e As Drivers.Common.PlcComEventArgs) Handles DataSubscriber1.DataChanged
        If e.PlcAddress = True Then
            BasicIndicatorRefrigCompressor.Color1 = Color.Green
            BasicIndicatorRefrigCompressor.Text = "ON"
        Else
            BasicIndicatorRefrigCompressor.Color1 = Color.Red
            BasicIndicatorRefrigCompressor.Text = "OFF"
        End If
    End Sub


Pages: [1]