1-Wire bus search algorithm, new C implementation
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
Ondřej Hruška cc979602f3
added some includes that should probably be in the header file
6 anni fa
.gitignore code import 6 anni fa
LICENSE Initial commit 6 anni fa
README.md readme 6 anni fa
main.c added some includes that should probably be in the header file 6 anni fa
ow_search.c added checksum support 6 anni fa
ow_search.h added some includes that should probably be in the header file 6 anni fa

README.md

1-Wire search algorithm

This project provides a reimplemented 1-Wire bus search algorithm (used to identify e.g. DS18x20 thermometers on a common open-drain bus).

The algorithm uses no global variables and allows finding a unlimited number of bus devices.

For an example of usage, see main.c.