cu-rp-balancebot 1.2.1

This is a full robot example for the Copper project. It runs on the Raspberry Pi with the balance bot hat to balance a rod.
1
2
3
4
5
6
7
8
9
10
pub mod tasks;

use cu29::prelude::*;
use cu29_export::run_cli;

gen_cumsgs!("copperconfig.ron");

fn main() {
    run_cli::<CuStampedDataSet>().expect("Failed to run the export CLI");
}