#motor #robotics #sabertooth

saberrs

A library for interfacing with Dimension Engineering's Sabertooth motor drivers

4 releases

0.3.1 Aug 15, 2020
0.3.0 Aug 15, 2020
0.2.1 Oct 13, 2019
0.2.0 Aug 27, 2019

#465 in Hardware support

26 downloads per month

MIT/Apache

51KB
1K SLoC

saberrs

crates.io version badge Documentation License CI

saberrs is a library for interfacing with Dimension Engineering Sabertooth motor driver.

Currently only the Sabertooth 2x32 is supported.

Full documentation: https://docs.rs/saberrs

Simple usage

In Cargo.toml:

[dependencies]
saberrs = "0.3"

In application code:

use saberrs::sabertooth2x32::{Sabertooth2x32, PacketSerial};

// Create a handle. This will use "PacketSerial" protocol.
let mut saber = PacketSerial::new("/dev/ttyS0")?;

// Go forward at half-speed (50.0%)
saber.set_drive(0.5)?;
saber.set_turn(0.0)?;

// Request the battery voltage from motor 1.
let vbat : f32 = saber.get_voltage(1)?;

// Stop the motors
saber.stop_motors()?;

Other protocol variants can be used:

use saberrs::sabertooth2x32::{Sabertooth2x32, PacketSerial, PacketType, PlainText};

// "PacketSerial" with specified address and frame protection type (checksum or crc).
let mut saber = PacketSerial::new("/dev/ttyS0")?
    .with_packet_type(PacketType::Checksum)
    .with_address(129);

// "PlainText" protocol
let mut sabertext = PlainText::new("/dev/ttyS1")?;

Features and dependencies

Features:

  • serialport, enabled by default, for providing default serial IO handlers.

Dependencies:

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Disclaimer

This library is not affiliated or associated in any way with Dimension Engineering.

All product and company names are trademarks or registered trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them.

Dependencies

~1.7–2.5MB
~48K SLoC