Class EL3356
Represents an EL3356 terminal with one analog measure bridge input channel.
public class EL3356 : MeasuringBridgeTerminal, INotifyPropertyChangedEx, INotifyPropertyChanged, ITerminal, IHasWCState
- Inheritance
-
PropertyChangedBaseEL3356
- Implements
-
INotifyPropertyChangedEx
- Inherited Members
-
PropertyChangedBase.Refresh()PropertyChangedBase.IsNotifyingPropertyChangedBase.PropertyChanged
Examples
This example creates and configures a EL3356 terminal.
var measuringBridgeTerminal = new EL3356();
var input = measuringBridgeTerminal;
input.Name = "MeasuringBridge";
input.Unit = "kg";
// Tare the input.
input.Tare();
// Wait until the 'TxPDO Toggle' toggles and get the current measure value.
double value = input.GetValue();
Remarks
Select the "Standard (REAL)" predefined PDO assignment for the terminal.
The terminal scales, adjusts and tares the measured value.
See the EL3356 documentation for more information.