Skip to content

A pure generic I2C crate for the Adafruit STEMMA soil moisture sensor

License

Notifications You must be signed in to change notification settings

FloppyDisck/STEMMA_soil_moisture_sensor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Adafruit STEMMA soil moisture sensor   Build Status Latest Version

A pure generic I2C crate for the Adafruit STEMMA soil moisture sensor

Usage

use stemma_soil_moisture_sensor::prelude::*;

fn main() -> Result<(), SoilMoistureSensorError> {
    // Setup your I2C and import relevant delay
    let i2c = ...;
    
    let moisture = SoilSensor::new(i2c, Delay).with_units(TemperatureUnit::Fahrenheit);
    let temp = moisture.temperature()?;
    let moist = moisture.moisture()?;
}

About

A pure generic I2C crate for the Adafruit STEMMA soil moisture sensor

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages