// TODO: remove this in final release.
// This file is just meant to test things out.
use matrix_rhal as hal;usestd::{thread, time};fnmain(){let bus =hal::Bus::init().unwrap();letmut sensors =hal::Sensors::new(&bus);letmut everloop =hal::Everloop::new(&bus);
everloop.test();// loop {
// println!("--> {:#?}", sensors.read_uv());
// println!("--> {:#?}", sensors.read_pressure());
// println!("--> {:#?}", sensors.read_humidity());
// println!("--> {:#?}", sensors.read_imu());
// // delay
// let ten_millis = time::Duration::from_millis(10);
// thread::sleep(ten_millis);
// }
}