sts3215-controller 0.1.4

A Rust library for controlling ST3215 servos
Documentation
//! Bibliothèque de contrôle pour servos ST3215
//!
//! Cette bibliothèque fournit une interface pour contrôler les servomoteurs ST3215
//! via une communication série.

mod values;
mod port_handler;
mod protocol_packet_handler;
mod group_sync_write;
mod group_sync_read;
mod st3215;
pub mod ffi;

pub use values::*;
pub use port_handler::PortHandler;
pub use protocol_packet_handler::ProtocolPacketHandler;
pub use group_sync_write::GroupSyncWrite;
pub use group_sync_read::GroupSyncRead;
pub use st3215::ST3215;