vexide_devices/smart/gps.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813
//! GPS Sensor
//!
//! This module provides an interface to interact with the VEX V5 GPS Sensor,
//! which uses computer vision and an inertial measurement unit (IMU) to provide absolute
//! position tracking within a VEX Robotics Competition field.
//!
//! # Hardware Description
//!
//! The GPS sensor combines a monochrome camera and an IMU for robust position tracking
//! through visual odometry. It works by detecting QR-like patterns on the field perimeter,
//! using both the pattern sequence's and apparent size for position determination. The
//! integrated IMU provides motion tracking for position estimation when visual tracking
//! is unavailable or unreliable.
//!
//! The sensor has specific operating ranges: it requires a minimum
//! distance of 20 inches from the field perimeter for reliable readings, has a deadzone
//! between 0-13.5 inches, and maintains accuracy up to 12 feet from the perimeter.
//!
//! Sensor fusion between the camera and IMU helps maintain position tracking through
//! dead zones and areas of inconsistent visual detection.
//!
//! Further information about the sensor's method of operation can be found in [IFI's patent](https://docs.google.com/viewerng/viewer?url=https://patentimages.storage.googleapis.com/4f/74/30/eccf334da0ae38/WO2020219788A1.pdf).
use core::{marker::PhantomData, time::Duration};
use vex_sdk::{
vexDeviceGpsAttitudeGet, vexDeviceGpsDataRateSet, vexDeviceGpsDegreesGet, vexDeviceGpsErrorGet,
vexDeviceGpsHeadingGet, vexDeviceGpsInitialPositionSet, vexDeviceGpsOriginGet,
vexDeviceGpsOriginSet, vexDeviceGpsQuaternionGet, vexDeviceGpsRawAccelGet,
vexDeviceGpsRawGyroGet, vexDeviceGpsRotationGet, vexDeviceGpsStatusGet, V5_DeviceGpsAttitude,
V5_DeviceGpsQuaternion, V5_DeviceGpsRaw, V5_DeviceT,
};
use vexide_core::float::Float;
use super::{validate_port, SmartDevice, SmartDeviceType, SmartPort};
use crate::{math::Point2, PortError};
/// A GPS sensor plugged into a Smart Port.
#[derive(Debug, PartialEq)]
pub struct GpsSensor {
port: SmartPort,
device: V5_DeviceT,
/// Internal IMU
pub imu: GpsImu,
}
// SAFETY: Required because we store a raw pointer to the device handle to avoid it getting from the
// SDK each device function. Simply sharing a raw pointer across threads is not inherently unsafe.
unsafe impl Send for GpsSensor {}
unsafe impl Sync for GpsSensor {}
impl GpsSensor {
/// Creates a new GPS sensor from a [`SmartPort`].
///
/// # Configuration
///
/// The sensor requires two parameters to be initially configured, passed as arguments ot this function:
///
/// - `offset`: The physical offset of the sensor from the robot's center of rotation.
/// - `initial_pose`: The inital position and heading of the robot.
///
/// # Examples
///
/// ```
/// use vexide::prelude::*;
///
/// #[vexide::main]
/// async fn main(peripherals: Peripherals) {
/// // Create a GPS sensor mounted 2 inches forward and 1 inch right of center
/// // Starting at position (0, 0) with 90 degree heading
/// let gps = GpsSensor::new(
/// peripherals.port_1,
/// [2.0, 1.0],
/// ([0.0, 0.0], 90.0)
/// );
/// }
/// ```
pub fn new(
port: SmartPort,
offset: impl Into<Point2<f64>>,
initial_pose: (impl Into<Point2<f64>>, f64),
) -> Self {
let device = unsafe { port.device_handle() };
let initial_position = initial_pose.0.into();
let offset = offset.into();
unsafe {
vexDeviceGpsOriginSet(device, offset.x, offset.y);
vexDeviceGpsInitialPositionSet(
device,
initial_position.x,
initial_position.y,
360.0 - initial_pose.1,
);
}
Self {
device,
imu: GpsImu {
device,
port_number: port.number(),
rotation_offset: Default::default(),
heading_offset: Default::default(),
},
port,
}
}
/// Returns the physical offset of the sensor from the robot's center of rotation.
///
/// # Errors
///
/// An error is returned if a GPS sensor is not currently connected to the Smart Port.
///
/// # Examples
///
/// ```
/// use vexide::prelude::*;
///
/// #[vexide::main]
/// async fn main(peripherals: Peripherals) {
/// let gps = GpsSensor::new(
/// peripherals.port_1,
/// [2.0, 1.0],
/// ([0.0, 0.0], 90.0)
/// );
///
/// // Get the configured offset of the sensor
/// if let Ok(offset) = gps.offset() {
/// println!("GPS sensor is mounted at x={}, y={}", offset.x, offset.y);
/// }
/// }
/// ```
pub fn offset(&self) -> Result<Point2<f64>, PortError> {
self.validate_port()?;
let mut data = Point2 { x: 0.0, y: 0.0 };
unsafe { vexDeviceGpsOriginGet(self.device, &mut data.x, &mut data.y) }
Ok(data)
}
/// Returns the currently computed pose (heading and position) from the sensor.
///
/// # Important note about heading!
///
/// The heading returned here is in a different angle system from [`GpsImu::heading`]! The heading
/// returned by this function increases as the sensor turns **counterclockwise**, while the opposite
/// is true for [`GpsImu`]. This is done to make it easier to use trig functions with the coordinates
/// returned by the sensor, as anything involving cartesian coordinates are expected to be in standard
/// unit circle angles. In addition, this function is not affected by [`GpsImu::reset_heading`] or
/// [`GpsImu::set_heading`].
///
/// > You should **never** attempt to use the [`GpsImu`] angles when dealing with position data from this sensor
/// > unless you understand exactly what you're doing.
///
/// # Errors
///
/// An error is returned if a GPS sensor is not currently connected to the Smart Port.
///
/// # Examples
///
/// ```
/// use vexide::prelude::*;
///
/// #[vexide::main]
/// async fn main(peripherals: Peripherals) {
/// let gps = GpsSensor::new(
/// peripherals.port_1,
/// [2.0, 1.0],
/// ([0.0, 0.0], 90.0)
/// );
///
/// // Get current position and heading
/// if let Ok((position, heading)) = gps.pose() {
/// println!(
/// "Robot is at x={}, y={} with heading {}°",
/// position.x,
/// position.y,
/// heading
/// );
/// }
/// }
/// ```
pub fn pose(&self) -> Result<(Point2<f64>, f64), PortError> {
self.validate_port()?;
let mut attitude = V5_DeviceGpsAttitude::default();
unsafe {
vexDeviceGpsAttitudeGet(self.device, &mut attitude, false);
}
let heading = (360.0
- unsafe {
vexDeviceGpsRotationGet(self.device) + vexDeviceGpsDegreesGet(self.device)
})
% 360.0;
Ok((
Point2 {
x: attitude.position_x,
y: attitude.position_y,
},
heading,
))
}
/// Returns the RMS (Root Mean Squared) error for the GPS position reading in meters.
///
/// # Errors
///
/// An error is returned if a GPS sensor is not currently connected to the Smart Port.
///
/// # Examples
///
/// ```
/// use vexide::prelude::*;
///
/// #[vexide::main]
/// async fn main(peripherals: Peripherals) {
/// let gps = GpsSensor::new(
/// peripherals.port_1,
/// [2.0, 1.0],
/// ([0.0, 0.0], 90.0)
/// );
///
/// // Check position accuracy
/// if gps.error().is_ok_and(|err| err > 0.3) {
/// println!("Warning: GPS position accuracy is low ({}m error)", error);
/// }
/// }
/// ```
pub fn error(&self) -> Result<f64, PortError> {
self.validate_port()?;
Ok(unsafe { vexDeviceGpsErrorGet(self.device) })
}
/// Returns the internal status code of the sensor.
///
/// # Errors
///
/// An error is returned if a GPS sensor is not currently connected to the Smart Port.
///
/// # Examples
///
/// ```
/// use vexide::prelude::*;
///
/// #[vexide::main]
/// async fn main(peripherals: Peripherals) {
/// let gps = GpsSensor::new(
/// peripherals.port_1,
/// [2.0, 1.0],
/// ([0.0, 0.0], 90.0)
/// );
///
/// if let Ok(status) = gps.status() {
/// println!("Status: {:b}", status);
/// }
/// }
/// ```
pub fn status(&self) -> Result<u32, PortError> {
self.validate_port()?;
Ok(unsafe { vexDeviceGpsStatusGet(self.device) })
}
}
impl SmartDevice for GpsSensor {
fn port_number(&self) -> u8 {
self.port.number()
}
fn device_type(&self) -> SmartDeviceType {
SmartDeviceType::Gps
}
}
impl From<GpsSensor> for SmartPort {
fn from(device: GpsSensor) -> Self {
device.port
}
}
/// GPS Sensor Internal IMU
#[derive(Debug, PartialEq)]
pub struct GpsImu {
port_number: u8,
device: V5_DeviceT,
rotation_offset: f64,
heading_offset: f64,
}
// I'm sure you know the drill at this point...
unsafe impl Send for GpsImu {}
unsafe impl Sync for GpsImu {}
impl GpsImu {
/// The maximum value that can be returned by [`Self::heading`].
pub const MAX_HEADING: f64 = 360.0;
fn validate_port(&self) -> Result<(), PortError> {
validate_port(self.port_number, SmartDeviceType::Gps)
}
/// Returns the IMU's yaw angle bounded by [0.0, 360.0) degrees.
///
/// Clockwise rotations are represented with positive degree values, while counterclockwise rotations are
/// represented with negative ones.
///
/// # Important
///
/// This value does not take into account the initial heading passed into [`GpsSensor::new`], and additionally
/// uses a different angle system compared to the main [`GpsSensor`] struct (with the positive direction being
/// clockwise). As such, this should not be used for doing any kind of math in tandem with the GPS sensor's
/// position readings. Prefer using [`GpsSensor::pose`] for that.
///
/// # Errors
///
/// An error is returned if a GPS sensor is not currently connected to the Smart Port.
///
/// # Examples
///
/// ```
/// use vexide::prelude::*;
/// use core::time::Duration;
///
/// #[vexide::main]
/// async fn main(peripherals: Peripherals) {
/// let gps = GpsSensor::new(
/// peripherals.port_1,
/// [2.0, 1.0],
/// ([0.0, 0.0], 90.0)
/// );
/// let imu = gps.imu;
///
/// // Sleep for two seconds to allow the robot to be moved.
/// sleep(Duration::from_secs(2)).await;
///
/// if let Ok(heading) = imu.heading() {
/// println!("Heading is {} degrees.", rotation);
/// }
/// }
/// ```
pub fn heading(&self) -> Result<f64, PortError> {
self.validate_port()?;
Ok(
// The result needs to be [0, 360). Adding a significantly negative offset could take us
// below 0. Adding a significantly positive offset could take us above 360.
(unsafe { vexDeviceGpsDegreesGet(self.device) } + self.heading_offset)
.rem_euclid(Self::MAX_HEADING),
)
}
/// Returns the total number of degrees the IMU has spun about the z-axis.
///
/// This value is theoretically unbounded. Clockwise rotations are represented with positive degree values,
/// while counterclockwise rotations are represented with negative ones.
///
/// # Important
///
/// This value does not take into account the initial heading passed into [`GpsSensor::new`], and additionally
/// uses a different angle system compared to the main [`GpsSensor`] struct (with the positive direction being
/// clockwise). As such, this should not be used for doing any kind of math in tandem with the GPS sensor's
/// position readings. Prefer using [`GpsSensor::pose`] for that.
///
/// # Errors
///
/// An error is returned if a GPS sensor is not currently connected to the Smart Port.
///
/// # Examples
///
/// ```
/// use vexide::prelude::*;
/// use core::time::Duration;
///
/// #[vexide::main]
/// async fn main(peripherals: Peripherals) {
/// let gps = GpsSensor::new(
/// peripherals.port_1,
/// [2.0, 1.0],
/// ([0.0, 0.0], 90.0)
/// );
/// let imu = gps.imu;
///
/// // Sleep for two seconds to allow the robot to be moved.
/// sleep(Duration::from_secs(2)).await;
///
/// if let Ok(rotation) = imu.rotation() {
/// println!("Robot has rotated {} degrees since calibration.", rotation);
/// }
/// }
/// ```
pub fn rotation(&self) -> Result<f64, PortError> {
self.validate_port()?;
Ok(unsafe { vexDeviceGpsHeadingGet(self.device) } + self.rotation_offset)
}
/// Returns the Euler angles (pitch, yaw, roll) representing the IMU's orientation.
///
/// # Important
///
/// This value does not take into account the initial heading passed into [`GpsSensor::new`], and additionally
/// uses a different angle system compared to the main [`GpsSensor`] struct (with the positive direction being
/// clockwise). As such, this should not be used for doing any kind of math in tandem with the GPS sensor's
/// position readings. Prefer using [`GpsSensor::pose`] for that.
///
/// # Errors
///
/// An error is returned if a GPS sensor is not currently connected to the Smart Port.
///
/// # Examples
///
/// ```
/// use vexide::prelude::*;
/// use core::time::Duration;
///
/// #[vexide::main]
/// async fn main(peripherals: Peripherals) {
/// let gps = GpsSensor::new(
/// peripherals.port_1,
/// [2.0, 1.0],
/// ([0.0, 0.0], 90.0)
/// );
/// let imu = gps.imu;
///
/// // Sleep for two seconds to allow the robot to be moved.
/// sleep(Duration::from_secs(2)).await;
///
/// if let Ok(angles) = imu.euler() {
/// println!(
/// "yaw: {}°, pitch: {}°, roll: {}°",
/// angles.a.to_degrees(),
/// angles.b.to_degrees(),
/// angles.c.to_degrees(),
/// );
/// }
/// }
/// ```
pub fn euler(&self) -> Result<mint::EulerAngles<f64, f64>, PortError> {
self.validate_port()?;
let mut data = V5_DeviceGpsAttitude::default();
unsafe {
vexDeviceGpsAttitudeGet(self.device, &mut data, false);
}
Ok(mint::EulerAngles {
a: data.pitch.to_radians(),
b: data.yaw.to_radians(),
c: data.roll.to_radians(),
marker: PhantomData,
})
}
/// Returns a quaternion representing the IMU's orientation.
///
/// # Important
///
/// This value does not take into account the initial heading passed into [`GpsSensor::new`], and additionally
/// uses a different angle system compared to the main [`GpsSensor`] struct (with the positive direction being
/// clockwise). As such, this should not be used for doing any kind of math in tandem with the GPS sensor's
/// position readings. Prefer using [`GpsSensor::pose`] for that.
///
/// # Errors
///
/// An error is returned if a GPS sensor is not currently connected to the Smart Port.
///
/// # Examples
///
/// ```
/// use vexide::prelude::*;
/// use core::time::Duration;
///
/// #[vexide::main]
/// async fn main(peripherals: Peripherals) {
/// let gps = GpsSensor::new(
/// peripherals.port_1,
/// [2.0, 1.0],
/// ([0.0, 0.0], 90.0)
/// );
/// let imu = gps.imu;
///
/// // Sleep for two seconds to allow the robot to be moved.
/// sleep(Duration::from_secs(2)).await;
///
/// if let Ok(quaternion) = imu.quaternion() {
/// println!(
/// "x: {}, y: {}, z: {}, scalar: {}",
/// quaternion.v.x,
/// quaternion.v.y,
/// quaternion.v.z,
/// quaternion.s,
/// );
/// }
/// }
/// ```
pub fn quaternion(&self) -> Result<mint::Quaternion<f64>, PortError> {
self.validate_port()?;
let mut data = V5_DeviceGpsQuaternion::default();
unsafe {
vexDeviceGpsQuaternionGet(self.device, &mut data);
}
Ok(mint::Quaternion {
v: mint::Vector3 {
x: data.x,
y: data.y,
z: data.z,
},
s: data.w,
})
}
/// Returns the IMU's raw accelerometer values.
///
/// # Errors
///
/// An error is returned if a GPS sensor is not currently connected to the Smart Port.
///
/// # Examples
///
/// ```
/// use vexide::prelude::*;
/// use core::time::Duration;
///
/// #[vexide::main]
/// async fn main(peripherals: Peripherals) {
/// let gps = GpsSensor::new(
/// peripherals.port_1,
/// [2.0, 1.0],
/// ([0.0, 0.0], 90.0)
/// );
/// let imu = gps.imu;
///
/// // Read out accleration values every 10mS
/// loop {
/// if let Ok(acceleration) = imu.acceleration() {
/// println!(
/// "x: {}G, y: {}G, z: {}G",
/// acceleration.x,
/// acceleration.y,
/// acceleration.z,
/// );
/// }
///
/// sleep(Duration::from_millis(10)).await;
/// }
/// }
/// ```
pub fn acceleration(&self) -> Result<mint::Vector3<f64>, PortError> {
self.validate_port()?;
let mut data = V5_DeviceGpsRaw::default();
unsafe {
vexDeviceGpsRawAccelGet(self.device, &mut data);
}
Ok(mint::Vector3 {
x: data.x,
y: data.y,
z: data.z,
})
}
/// Returns the IMU's raw gyroscope values.
///
/// # Errors
///
/// An error is returned if a GPS sensor is not currently connected to the Smart Port.
///
/// # Examples
///
/// ```
/// use vexide::prelude::*;
/// use core::time::Duration;
///
/// #[vexide::main]
/// async fn main(peripherals: Peripherals) {
/// let gps = GpsSensor::new(
/// peripherals.port_1,
/// [2.0, 1.0],
/// ([0.0, 0.0], 90.0)
/// );
/// let imu = gps.imu;
///
/// // Read out angular velocity values every 10mS
/// loop {
/// if let Ok(rates) = imu.gyro_rate() {
/// println!(
/// "x: {}°/s, y: {}°/s, z: {}°/s",
/// rates.x,
/// rates.y,
/// rates.z,
/// );
/// }
///
/// sleep(Duration::from_millis(10)).await;
/// }
/// }
/// ```
pub fn gyro_rate(&self) -> Result<mint::Vector3<f64>, PortError> {
self.validate_port()?;
let mut data = V5_DeviceGpsRaw::default();
unsafe {
vexDeviceGpsRawGyroGet(self.device, &mut data);
}
Ok(mint::Vector3 {
x: data.x,
y: data.y,
z: data.z,
})
}
/// Resets the current reading of the IMU's heading to zero.
///
/// # Important
///
/// This has no effect on the "heading" value returned by [`GpsSensor::pose`]. See the notes
/// on that function for more information.
///
/// # Errors
///
/// An error is returned if a GPS sensor is not currently connected to the Smart Port.
///
/// # Examples
///
/// ```
/// use vexide::prelude::*;
/// use core::time::Duration;
///
/// #[vexide::main]
/// async fn main(peripherals: Peripherals) {
/// let gps = GpsSensor::new(
/// peripherals.port_1,
/// [2.0, 1.0],
/// ([0.0, 0.0], 90.0)
/// );
/// let imu = gps.imu;
///
/// // Sleep for two seconds to allow the robot to be moved.
/// sleep(Duration::from_secs(2)).await;
///
/// // Store heading before reset.
/// let heading = imu.heading().unwrap_or_default();
///
/// // Reset heading back to zero.
/// _ = imu.reset_heading();
/// }
/// ```
pub fn reset_heading(&mut self) -> Result<(), PortError> {
self.set_heading(Default::default())
}
/// Resets the current reading of the IMU's rotation to zero.
///
/// # Important
///
/// This has no effect on the "heading" value returned by [`GpsSensor::pose`]. See the notes
/// on that function for more information.
///
/// # Errors
///
/// An error is returned if a GPS sensor is not currently connected to the Smart Port.
///
/// # Examples
///
/// ```
/// use vexide::prelude::*;
/// use core::time::Duration;
///
/// #[vexide::main]
/// async fn main(peripherals: Peripherals) {
/// let gps = GpsSensor::new(
/// peripherals.port_1,
/// [2.0, 1.0],
/// ([0.0, 0.0], 90.0)
/// );
/// let imu = gps.imu;
///
/// // Sleep for two seconds to allow the robot to be moved.
/// sleep(Duration::from_secs(2)).await;
///
/// // Store rotation before reset.
/// let rotation = imu.rotation().unwrap_or_default();
///
/// // Reset rotation back to zero.
/// _ = imu.reset_rotation();
/// }
/// ```
pub fn reset_rotation(&mut self) -> Result<(), PortError> {
self.set_rotation(Default::default())
}
/// Sets the current reading of the IMU's rotation to target value.
///
/// # Important
///
/// This has no effect on the "heading" value returned by [`GpsSensor::pose`]. See the notes
/// on that function for more information.
///
/// # Errors
///
/// An error is returned if a GPS sensor is not currently connected to the Smart Port.
///
/// # Examples
///
/// ```
/// use vexide::prelude::*;
///
/// #[vexide::main]
/// async fn main(peripherals: Peripherals) {
/// let gps = GpsSensor::new(
/// peripherals.port_1,
/// [2.0, 1.0],
/// ([0.0, 0.0], 90.0)
/// );
/// let imu = gps.imu;
///
/// // Set rotation to 90 degrees clockwise.
/// _ = imu.set_rotation(90.0);
/// }
/// ```
pub fn set_rotation(&mut self, rotation: f64) -> Result<(), PortError> {
self.validate_port()?;
self.rotation_offset = rotation - unsafe { vexDeviceGpsHeadingGet(self.device) };
Ok(())
}
/// Sets the current reading of the IMU's heading to target value.
///
/// Target will default to 360 if above 360 and default to 0 if below 0.
///
/// # Important
///
/// This has no effect on the "heading" value returned by [`GpsSensor::pose`]. See the notes
/// on that function for more information.
///
/// # Errors
///
/// An error is returned if a GPS sensor is not currently connected to the Smart Port.
///
/// # Examples
///
/// ```
/// use vexide::prelude::*;
///
/// #[vexide::main]
/// async fn main(peripherals: Peripherals) {
/// let gps = GpsSensor::new(
/// peripherals.port_1,
/// [2.0, 1.0],
/// ([0.0, 0.0], 90.0)
/// );
/// let imu = gps.imu;
///
/// // Set heading to 90 degrees clockwise.
/// _ = imu.set_heading(90.0);
/// }
/// ```
pub fn set_heading(&mut self, heading: f64) -> Result<(), PortError> {
self.validate_port()?;
self.heading_offset = heading - unsafe { vexDeviceGpsDegreesGet(self.device) };
Ok(())
}
/// Sets the internal computation speed of the IMU.
///
/// This method does NOT change the rate at which user code can read data off the IMU, as the brain will only talk to the
/// device every 10mS regardless of how fast data is being sent or computed.
///
/// # Errors
///
/// An error is returned if a GPS sensor is not currently connected to the Smart Port.
///
/// # Examples
///
/// ```
/// use vexide::prelude::*;
/// use core::time::Duration;
///
/// #[vexide::main]
/// async fn main(peripherals: Peripherals) {
/// let gps = GpsSensor::new(
/// peripherals.port_1,
/// [2.0, 1.0],
/// ([0.0, 0.0], 90.0)
/// );
/// let imu = gps.imu;
///
/// // Set to minimum interval.
/// _ = imu.set_data_interval(Duration::from_millis(5));
/// }
/// ```
pub fn set_data_interval(&mut self, interval: Duration) -> Result<(), PortError> {
self.validate_port()?;
unsafe {
vexDeviceGpsDataRateSet(self.device, interval.as_millis() as u32);
}
Ok(())
}
}