#gps #altitude #read #uart #position #module #aron-is

AronIS_GPS_Crate

A GPS crate that reads the current altitude and position of the GPS module

1 unstable release

0.1.5 Sep 30, 2020
0.1.4 Sep 30, 2020

#42 in #uart

Download history 18/week @ 2024-02-18 6/week @ 2024-02-25 1/week @ 2024-03-03 4/week @ 2024-03-10

57 downloads per month

MIT license

7KB
85 lines

rust_template

This is a template repository for Mech_1 class in RU


lib.rs:

Examples

use AronIS_GPS_Crate::GPS;

use rpi_embedded::uart::{Uart,Parity};
fn main(){
let mut gps = gps::GPS::new();

loop{
gps.decoder();
}
}

Important info:

The output from the GPS is printed to the terminal and can additionally be read by reding the values from the struct
fx. in the example: pgs.altitude;

Dependencies

~375KB