vex-rt 0.15.1

A Rust runtime for the Vex V5 built on top of PROS.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![no_std]
#![no_main]

use vex_rt::prelude::*;

struct HelloBot;

impl Robot for HelloBot {
    fn new(_peripherals: Peripherals) -> Self {
        println!("Hello, world");
        HelloBot
    }
}

entry!(HelloBot);