1-Wire bus search algorithm, new C implementation
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Ondřej Hruška cc979602f3
added some includes that should probably be in the header file
6年前
.gitignore code import 6年前
LICENSE Initial commit 6年前
README.md readme 6年前
main.c added some includes that should probably be in the header file 6年前
ow_search.c added checksum support 6年前
ow_search.h added some includes that should probably be in the header file 6年前

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.