AdvancedHMI Software
General Category => Support Questions => Topic started by: suparman on November 16, 2018, 08:03:22 PM
-
Hello,
I try to use BasicDataLogger2 but the value need to divide by 10 to accommodate correct value.
Is there way to add the program in AHMI?
Regards
Supar
-
If I understand your question correctly then you would just need to use the ScaleFactor property as the attached picture shows.
-
Thank you Godra,
I try to fill the scale factor parameter and work for the positive value from plc but the negative value is not work.
suparman
-
I'm not sure about that part.
Archie might need to suggest if the public function GetScaledValue works properly for negative values.
-
Any suggestion or something to solve this negative value?
Regards
Supar
-
Is it too difficult for you to divide it using the PLC, it's controllogix after all.
-
You can try using old code, inside the DataSubscriber2 - Region "Subscribing and PLC data receiving" - Private Sub PolledDataReturnedValue, just replace the whole sub with the following:
Private Sub PolledDataReturnedValue(ByVal sender As Object, ByVal e As MfgControl.AdvancedHMI.Drivers.Common.PlcComEventArgs)
Try
'* Fire this event every time data is returned
OnDataReturned(e)
'For index = 0 To m_PLCAddressValueItems.Count - 1
' If String.Compare(e.PlcAddress, m_PLCAddressValueItems(index).PLCAddress, True) = 0 Then
' Dim i As Integer
' Dim tempString As String = ""
' Dim tempValue As String = ""
' While (i < e.Values.Count)
' Try
' tempValue = m_PLCAddressValueItems(index).GetScaledValue(e.Values(i))
' Catch ex As Exception
' tempValue = "," & "INVALID - Check scale factor/offset - " & e.Values(i)
' End Try
' If i > 0 Then
' tempString &= "," & tempValue
' Else
' tempString = tempValue
' End If
' i += 1
' End While
' If m_PLCAddressValueItems(index).LastValue <> tempString Then
' m_PLCAddressValueItems(index).LastValue = tempString
' '* This event is only fired when the returned data has changed
' OnDataChanged(e)
' End If
' End If
'Next
For index = 0 To m_PLCAddressValueItems.Count - 1
If String.Compare(e.PlcAddress, m_PLCAddressValueItems(index).PLCAddress, True) = 0 Then
Dim i As Integer
Dim tempString As String = ""
Dim tempValue As String = ""
While (i < e.Values.Count)
Try
If m_PLCAddressValueItems(index).ScaleFactor = 1 Then
If m_PLCAddressValueItems(index).ScaleOffset <> 0 Then
tempValue = CStr((CDbl(e.Values(i)) + m_PLCAddressValueItems(index).ScaleOffset))
Else
tempValue = e.Values(i)
End If
Else
tempValue = CStr((CDbl(e.Values(i)) * m_PLCAddressValueItems(index).ScaleFactor + m_PLCAddressValueItems(index).ScaleOffset))
End If
Catch ex As Exception
tempValue = "," & "INVALID - Check scale factor/offset - " & e.Values(i)
End Try
If i > 0 Then
tempString &= "," & tempValue
Else
tempString = tempValue
End If
i += 1
End While
If m_PLCAddressValueItems(index).LastValue <> tempString Then
m_PLCAddressValueItems(index).LastValue = tempString
'* This event is only fired when the returned data has changed
OnDataChanged(e)
End If
End If
Next
Catch
DisplayError("INVALID VALUE RETURNED!")
End Try
End Sub
The current code has been included here as a commented section.
-
I try to BUILD (F7) but too many error. Might you attach DataSubscriber2.vb so I can to add the item.
regards
Supar
-
The file is attached and should be added to the AdvancedHMIControls\Components folder as an existing item (to replace the existing file).
Whenever you mention errors you should post them as well so we could see.
Generally, you should always close all the open forms and then try rebuilding the solution after changes are made to the controls/components.
-
Hi Godra,
Now the negative value can log in with the correct value into the file, it's nice.
Thank you very much for help.
Best regards
Supar