dwfpy.analog_io.AnalogIoChannelNode
- class AnalogIoChannelNode(channel, node)[source]
Bases:
objectRepresents an Analog IO channel node.
Methods
Attributes
Gets the node index.
Gets the node name.
Gets the supported channel node types.
Gets the actual node value.
Gets the maximum node value.
Gets the minimum node value.
Gets the number of node value steps.
Gets the unit of the node value.
Gets or sets the node value.
Gets the maximum node value.
Gets the minimum node value.
Gets the number of node value steps.
- property index: int
Gets the node index.
- Return type
int
- property name: str
Gets the node name.
- Return type
str
- property node_info: Tuple[ChannelNodeType, ...]
Gets the supported channel node types.
- Return type
Tuple[ChannelNodeType,...]
- property status: float
Gets the actual node value.
- Return type
float
- property status_max: float
Gets the maximum node value.
- Return type
float
- property status_min: float
Gets the minimum node value.
- Return type
float
- property status_steps: int
Gets the number of node value steps.
- Return type
int
- property unit: str
Gets the unit of the node value.
- Return type
str
- property value: float
Gets or sets the node value.
- Return type
float
- property value_max: float
Gets the maximum node value.
- Return type
float
- property value_min: float
Gets the minimum node value.
- Return type
float
- property value_steps: int
Gets the number of node value steps.
- Return type
int