1-Wire bus search algorithm, new C implementation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ondřej Hruška 0f86b3575c
fixed some Wall Wextra warnings
6 years ago
.gitignore code import 6 years ago
LICENSE Initial commit 6 years ago
README.md readme 6 years ago
main.c fixed some Wall Wextra warnings 6 years ago
ow_search.c optimized and cleaned 6 years ago
ow_search.h typos 6 years ago

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.