Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 288 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 288 Bytes

kbot-pwrbrd

A Rust library for interfacing with the K-Bot power board over CAN.

Usage

use kbot_pwrbrd::PowerBoard;

if let board = PowerBoard::new("can0").is_ok() {
    println!("Board initialized successfully");
} else {
    println!("Failed to initialize board");
}