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.