kbot-pwrbrd 0.2.2

A Rust library for interfacing with the K-Bot power board over CAN
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# kbot-pwrbrd

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

## Usage

```rust
use kbot_pwrbrd::PowerBoard;

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