Skip to main content

Device Attributes

The master API can be used to READ and WRITE objects from Group 0. Attribute values, including attribute lists (g0v255s), are passed to the ReadHandler when they are received from the outstation.

Reading Attributes

A request to read attributes use the READ function code combined with one or more object headers. Each header consists of a group 0 variation using the 8-bit start/stop qualifier code (0x00). The point index in the request corresponds to the "set" to which the device attribute belongs.

let result = association
.read(ReadRequest::device_attribute(
AllAttributes,
AttrSet::Default,
))
.await;

if let Err(err) = result {
tracing::warn!("error: reading device attributes {}", err);
}

Writing Attributes

Attributes can be written one at a time or in batches by constructing a request header send it the outstation. The Rust API uses a single method to add an attribute to the header, whereas the bindings use a separate method for each type of attribute.

The example below demonstrates how to write g0v245 (User-assigned location) to the outstation which is a visible string.

let headers = Headers::default()
.add_attribute(StringAttr::UserAssignedLocation.with_value("Mt. Olympus"));

let result = association
.send_and_expect_empty_response(FunctionCode::Write, headers)
.await;

if let Err(err) = result {
tracing::warn!("error writing device attribute: {}", err);
}