max31855 0.1.0

Driver for MAX31855 SPI thermocouple converter
Documentation
  • Coverage
  • 100%
    30 out of 30 items documented1 out of 14 items with examples
  • Size
  • Source code size: 26.17 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.78 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • cs2dsb/max31855.rs
    4 6 2
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • cs2dsb

max31855

Driver for MAX31855 thermocouple converter using traits from embedded-hal.

Crate Documentation

Features

  • Read thermocouple temperature
  • Read internal reference junction temperature
  • Read fault data (missing thermocouple, short to ground or short to vcc)
  • Supports 16-bit (thermocouple + fault only) or 32-bit (thermocouple, internal and full fault details)
  • Supports Celsius, Fahrenheit or Kelvin units
  • Supports returning raw (ADC count) readings

Example:

    let freq: Hertz = 4.mhz().into();
    let mode = Mode {
        polarity: Polarity::IdleLow,
        phase: Phase::CaptureOnFirstTransition
    };

    let mut spi = Spi::spi2(
        device.SPI2,
        (sck_pin, miso_pin, mosi_pin)
        mode,
        freq,
        clocks,
        &mut rcc.apb1
    );

    // Full 32-bit read, result contains both thermocouple and internal temperatures
    match spi.read_all(&mut cs_pin, Unit::Celsius) {
        Ok(v) => info!("Ok: {:?}", v),
        Err(e) => info!("Err: {:?}", e),
    }

    // Just thermocouple 16-bit read
    match spi.read_thermocouple(&mut cs_pin, Unit::Celsius) {
        Ok(v) => info!("Ok: {:?}", v),
        Err(e) => info!("Err: {:?}", e),
    }

Free and open source software distributed under the terms of both the MIT License and the Apache License 2.0.