vex-sdk 0.28.0

FFI bindings to VEXos system APIs.
Documentation
1
2
3
4
5
6
7
8
9
//! Rangefinder/Lidar Sensor
//!
//! This sensor is not sold by VEX.

use crate::V5_DeviceT;

unsafe extern "system" {
    pub fn vexDeviceRangeValueGet(device: V5_DeviceT) -> i32;
}