Skip to main content

Executing Controls

You can construct arbitrary sequences of binary and analog output headers using a builder class. You can then send these commands to a particular outstation using the association id.

if let Err(err) = association
.operate(
CommandMode::SelectBeforeOperate,
CommandBuilder::single_header_u16(
Group12Var1::from_op_type(OpType::LatchOn),
3u16,
),
)
.await
{
tracing::warn!("error: {}", err);
}

Calling operate begins an asynchronous operation that will complete successfully or with an error code.

The request will only succeed if the outstation returns CommandStatus.Success for each of the requested controls.

Consult the language-specific documentation for the meaning of each error code.