Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gnawinganimal/tache

A robotics framework designed to run anywhere.
https://github.com/gnawinganimal/tache

frc hacktoberfest robotics

Last synced: about 2 months ago
JSON representation

A robotics framework designed to run anywhere.

Awesome Lists containing this project

README

        

# tache

### Example

```rust
struct Arm(Motor);

impl Arm {
fn new() -> Self {
Self(Motor::new(0))
}

fn run(&mut self, output: f64) {
self.0.set_output(output);
}
}

fn main() {
Robot::new()
.with(Arm::new())
.on_start(|exec| {
exec(|c| {
let arm = req!(c, Arm);
arm.move(1.0);
});
})
.run();
}
```