#automation #devices #plc #beckhoff #file-access #client-connect

ads

Client for the Beckhoff Automation Device Specification protocol for PLCs

9 unstable releases (3 breaking)

0.4.3 Nov 17, 2022
0.4.2 Sep 22, 2022
0.4.1 Aug 26, 2022
0.4.0 Jun 13, 2022
0.0.1 May 1, 2018

#332 in Hardware support

Download history 25/week @ 2024-01-08 4/week @ 2024-01-15 25/week @ 2024-02-05 6/week @ 2024-02-12 35/week @ 2024-02-19 16/week @ 2024-02-26 25/week @ 2024-03-04 33/week @ 2024-03-11 31/week @ 2024-03-18 18/week @ 2024-03-25 48/week @ 2024-04-01 7/week @ 2024-04-08 33/week @ 2024-04-15

109 downloads per month
Used in ads-proxy

MIT/Apache

155KB
3K SLoC

ads

Build status crates.io docs.rs

This crate allows to connect to Beckhoff TwinCAT devices and other servers speaking the ADS (Automation Device Specification) protocol.

Installation

Use with Cargo as usual, no system dependencies are required.

[dependencies]
ads = "0.4"

Rust version

Minimum supported Rust version is 1.48.0.

Usage

A simple example:

fn main() -> ads::Result<()> {
    // Open a connection to an ADS device identified by hostname/IP and port.
    // For TwinCAT devices, a route must be set to allow the client to connect.
    // The source AMS address is automatically generated from the local IP,
    // but can be explicitly specified as the third argument.
    let client = ads::Client::new(("plchost", ads::PORT), ads::Timeouts::none(),
                                  ads::Source::Auto)?;

    // Specify the target ADS device to talk to, by NetID and AMS port.
    // Port 851 usually refers to the first PLC instance.
    let device = client.device(ads::AmsAddr::new([5, 32, 116, 5, 1, 1].into(), 851));

    // Ensure that the PLC instance is running.
    assert!(device.get_state()?.0 == ads::AdsState::Run);

    // Request a handle to a named symbol in the PLC instance.
    let handle = Handle::new(device, "MY_SYMBOL")?;

    // Read data in form of an u32 from the handle.
    let value: u32 = handle.read_value()?;
    println!("MY_SYMBOL value is {}", value);

    // Connection will be closed when the client is dropped.
    Ok(())
}

Features

All ADS requests are implemented.

Further features include support for receiving notifications from a channel, file access via ADS, and communication via UDP to identify an ADS system and set routes automatically.

Examples

A utility called adstool is found under examples/, very similar to the one provided by the C++ library.

Dependencies

~3MB
~59K SLoC