mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-10-02 06:40:47 +00:00

* After more analysis and coding * More work is done, writing/reading WIP * `write` prototype done, small fixes. Read next * pre-rebase * Rebased and updated * Pre-final state of driver * More work (near-final state) done * WIP * WIP * working * cleanup * changelog * address review comments * remove Option from conjure and improve lp-i2c example description --------- Co-authored-by: Kirill Mikhailov <konnor1980@yandex.ru>
26 lines
626 B
Rust
26 lines
626 B
Rust
//! Uses `LP_I2C` and reads calibration data from BMP180 sensor.
|
|
//!
|
|
//! This example dumps the calibration data from a BMP180 sensor, to view them,
|
|
//! logic analyzer or oscilloscope is required.
|
|
//!
|
|
//! The following wiring is assumed:
|
|
//! - SDA => GPIO6
|
|
//! - SCL => GPIO7
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
|
|
use embedded_hal_02::blocking::i2c::WriteRead;
|
|
use esp_lp_hal::{i2c::LpI2c, prelude::*};
|
|
use panic_halt as _;
|
|
|
|
#[entry]
|
|
fn main(mut i2c: LpI2c) -> ! {
|
|
let _peripherals = esp32c6_lp::Peripherals::take().unwrap();
|
|
|
|
loop {
|
|
let mut data = [0u8; 22];
|
|
i2c.write_read(0x77, &[0xaa], &mut data).ok();
|
|
}
|
|
}
|