sgp41 0.1.1

Rust driver for the Sensirion SGP41 series. VOC and NOx Sensor.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! This library provides an embedded `no_std` driver for the [Sensirion SGP41 sensor](https://www.sensirion.com/en/environmental-sensors/gas-sensors/sgp41/). 
//! This driver was built using [embedded-hal](https://docs.rs/embedded-hal/) traits. 
//! The implementaion is based on [scd4x](https://github.com/hauju/scd4x-rs.git).
//!

#![deny(unsafe_code)]
#![cfg_attr(not(test), no_std)]

pub mod sgp41;
pub mod commands;
pub mod error;
pub mod types;