Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Show only
|
Search instead for
Did you mean:
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send InviteCancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
📖HomeBack It is important to note that DataField properties are not automatically updated in the Driver. This is different behaviour to ConfigField properties.
C# .NET Example
A DataField and ConfigField have been added to a new Scanner object:
[Table("MyScanner", "MyScanner")]public class MyScanner : Scanner{ [Label("Meter Number", 1, 1)] [ConfigField("Meter Number", "The meter number on the device", 1, 2, OPC_METER_NUMBER)] public Byte MeterNumber; [DataField("Last Daily Record", "The index of the last daily record that was retrieved from the meter", PemexModule.OPC_METER_DATA_LAST_DAILY_RECORD)] public UInt16 LastDailyRecord = 0;}
In the driver, both the ConfigField and DataField can be accessed using the DBScanner property, like this:
It should be pointed out that the ACTION_GET_HISTORIC_RECORDS action will need to be handled in the function OnReceive in the MyScanner object, like this: