bmi160-esp32-minimal 0.1.2

Minimal BMI160 sensor driver for ESP32 using esp-hal
docs.rs failed to build bmi160-esp32-minimal-0.1.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

BMI160 on ESP32 – Super Simple Driver

Crates.io
Docs

This is a lightweight driver for the BMI160 6-axis IMU (accelerometer + gyro) on the ESP32.
Built with esp-hal, no useless extras.

Features

  • Only the essentials, no random dependencies
  • Works with no_std (good for embedded projects)
  • Reads accelerometer and gyroscope data
  • Uses I2C for communication
  • Converts raw values into g-force and deg/sec
  • Handles errors with proper Result types
  • Optional defmt logging if you need it

Usage

Add this to your Cargo.toml:

bmi160-esp32-minimal = "x.x.x"