Pure Rust BME680 implementation
Find a file
2018-05-21 18:07:13 +02:00
examples Add unit conversions 2018-05-21 16:26:14 +02:00
src Replace set sensor settings constants 2018-05-21 18:07:13 +02:00
.gitignore Initial bindings 2018-04-11 21:40:48 +02:00
.gitmodules Remove c-submodule 2018-05-21 17:01:57 +02:00
Cargo.lock Fix i2c read bytes 2018-05-18 22:12:42 +02:00
Cargo.toml Fix i2c read bytes 2018-05-18 22:12:42 +02:00
README.md Describe repository purpose in README 2018-05-21 17:26:37 +02:00

BME680 + Rust

This repository contains a native Rust implementation for the BME680 environmental sensor. The library can be used to read the gas, pressure, humidity and temperature sensors via I²C.

The library uses the embedded-hal library to abstract reading and writing via I²C. In the examples you can find a demo how to use the library in Linux using the linux-embedded-hal implementation.