#embedded-hal-driver #onewire #1wire

no-std one-wire-bus

A Rust implementation of the 1-Wire protocol for embedded-hal

2 releases

0.1.1 Jan 18, 2020
0.1.0 Jan 17, 2020

#1152 in Embedded development

Download history 64/week @ 2023-12-22 63/week @ 2023-12-29 96/week @ 2024-01-05 96/week @ 2024-01-12 106/week @ 2024-01-19 134/week @ 2024-01-26 125/week @ 2024-02-02 100/week @ 2024-02-09 122/week @ 2024-02-16 137/week @ 2024-02-23 118/week @ 2024-03-01 211/week @ 2024-03-08 217/week @ 2024-03-15 123/week @ 2024-03-22 239/week @ 2024-03-29 186/week @ 2024-04-05

798 downloads per month
Used in ds18b20

MIT/Apache

20KB
385 lines

One-Wire Bus

Build Status crates.io API

A Rust implementation of the 1-Wire protocol for embedded-hal

Quick Start

These examples omit error handling to keep them short. You should check all results and handle them appropriately.

The 1-wire bus requires a single digital pin that is configured as an open-drain output (it's either open, or connected to ground), and the bus should have a ~5K Ohm pull-up resistor connected. How you obtain this pin from your specific device is up the the embedded-hal implementation for that device, but it must implement both InputPin and OutputPin

use embedded_hal::blocking::delay::DelayUs;
use embedded_hal::digital::v2::{InputPin, OutputPin};
use core::fmt::{Debug, Write};
use one_wire_bus::OneWire;

fn find_devices<P, E>(
    delay: &mut impl DelayUs<u16>,
    tx: &mut impl Write,
    one_wire_pin: P,
)
    where
        P: OutputPin<Error=E> + InputPin<Error=E>,
        E: Debug
{
    let mut one_wire_bus = OneWire::new(one_wire_pin).unwrap();
    for device_address in one_wire_bus.devices(false, delay) {
        // The search could fail at any time, so check each result. The iterator automatically
        // ends after an error.
        let device_address = device_address.unwrap();

        // The family code can be used to identify the type of device
        // If supported, another crate can be used to interact with that device at the given address
        writeln!(tx, "Found device at address {:?} with family code: {:#x?}",
                 device_address, device_address.family_code()).unwrap();
    }
}

Example Output

Found device at address E800000B1FCD1028 with family code: 0x28
Found device at address 70000008AC851628 with family code: 0x28
Found device at address 0B00000B20687E28 with family code: 0x28
Found device at address 5700000B2015FF28 with family code: 0x28

Dependencies

~71KB