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.