1-Wire bus search algorithm, new C implementation
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Ondřej Hruška cc979602f3
added some includes that should probably be in the header file
il y a 6 ans
.gitignore code import il y a 6 ans
LICENSE Initial commit il y a 6 ans
README.md readme il y a 6 ans
main.c added some includes that should probably be in the header file il y a 6 ans
ow_search.c added checksum support il y a 6 ans
ow_search.h added some includes that should probably be in the header file il y a 6 ans

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.