Initial commit

This commit is contained in:
Robert Sammelson 2023-05-12 19:04:18 -04:00
commit 273c4159be
No known key found for this signature in database
GPG key ID: 92F1F04EDB06B9E9
6 changed files with 665 additions and 0 deletions

7
src/main.rs Normal file
View file

@ -0,0 +1,7 @@
mod obd2;
fn main() {
env_logger::init();
let mut device = obd2::Obd2::default();
println!("VIN: {:?}", device.get_vin());
}