phoxal 0.7.0

Phoxal — production-oriented autonomous robot framework (engine, model, typed bus, contracts).
Documentation
1
2
3
4
5
6
7
8
9
use phoxal::api::v1::component::capability::motor::Command;
use phoxal::api::v1::topic;
use phoxal::bus::topic::{PubSub, Topic};

fn want_command(_: Topic<PubSub<Command>>) {}

fn main() {
    want_command(topic::new().v1().drive().target());
}