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) '* Case may be switched so find key based on that Dim TargetKey As String = "" For Each key In SubscribedValueList.Keys If String.Compare(key, e.PlcAddress, True) = 0 Then TargetKey = key End If Next If e.Values(0) <> SubscribedValueList(TargetKey) Then '* Save this value so we know if it changed without comparing the invert SubscribedValueList(e.PlcAddress) = e.Values(0) If InvertValue Then m_Value = Convert.ToString(Not CBool(e.Values(0))) Else m_Value = e.Values(0) End If '* This event is only fired when the returned data has changed OnDataChanged(e) '* <--- any exceptions thrown by the user/programmer in a subscribed method are caught below. End If Catch ex As Exception DisplayError("INVALID VALUE RETURNED!") End Try End Sub
Quote from: seanpeery on April 05, 2016, 07:09:43 PMIf it's not already a thing, and if it is please inform me how to do this, an implementation for Universal Apps would be good.That will be coming in the future. All of the drivers are being updated for compatibility in UWP.
If it's not already a thing, and if it is please inform me how to do this, an implementation for Universal Apps would be good.
Support for Codesys 3.5
If i am not mistaken, s7-1200 cpu's support modbus tcp communication, soo i think that Ahmi modbus tcp communication will work too, but i didnt try it yet. In the near future i can report when i try.
The lack of a decent alarm component is the top on my list. I realize that this can be rather difficult but I'd like to see at least a template form or something that comes with AdvanceHMI which can give noob users an idea how to do it better. Also I think the whole navigation is a bit clunky, I created an MDI Client application which works much cleaner than your typical pages version. Maybe offer a template for that too?
Also I think the whole navigation is a bit clunky, I created an MDI Client application which works much cleaner than your typical pages version. Maybe offer a template for that too?
read/ write tags wiht OpcUA and OpcDA
I would Like to see a driver for the AutomationDirect Productivity series processors Ethernet/IP. I have been using them more and more to replace the Allen Bradley's in our machine builds. Thanks