Interface IDigitalOutput
Provides functionality for an digital output.
public interface IDigitalOutput : IHasKey, IHasDescription
- Inherited Members
Properties
Value
Gets or sets a value indicating whether the output is high.
bool Value { get; set; }
Property Value
Methods
GetValue()
Gets the actual value.
bool GetValue()
Returns
- bool
The output value.
SetValue(bool)
Sets the value.
void SetValue(bool value)
Parameters
value
boolValue to set.