use anyhow::Result;
use embedded_hal::blocking::delay::DelayMs;
use esp_idf_svc::hal::{
delay::FreeRtos,
i2c::{I2cConfig, I2cDriver},
peripherals::Peripherals,
prelude::*,
};
use shtcx::{self, PowerMode};
// Goals of this exercise:
// - Part1: Instantiate i2c peripheral
// - Part1: Implement one sensor, print sensor values
// - Part2: Implement second sensor on same bus to solve an ownership problem
fn main() -> Result<()> {
esp_idf_svc::sys::link_patches();
let peripherals = Peripherals::take().unwrap();
// 1. Instantiate the SDA and SCL pins, correct pins are in the training material.
// 2. Instantiate the i2c peripheral,I2cDriver, using a I2cConfig of 400kHz
// 3. Create an instance of the SHTC3 sensor.
// 4. Read and print the sensor's device ID.
loop {
// 5. This loop initiates measurements, reads values and prints humidity in % and Temperature in °C.
FreeRtos.delay_ms(500u32);
}
}
Loading
esp32-c3-rust-1
esp32-c3-rust-1