An arduino library to communicate using the Dallas one-wire protocol, where the Arduino takes the role of a slave.
Go to file
2018-03-31 17:30:04 +00:00
.vscode vscode intellisense path fix 2018-03-31 19:25:21 +02:00
examples Better handle unknown commands 2018-03-28 01:20:03 +02:00
extras Add online CRC calculator 2018-03-26 22:36:11 +02:00
library/OneWireSlave minor documentation improvements ; added compatible boards section 2018-03-31 19:23:19 +02:00
src Remove a compilation warning 2018-03-23 20:03:03 +01:00
keywords.txt More library friendly (from ntruchsess fork) 2018-03-24 13:29:10 +01:00
library.properties More library friendly (from ntruchsess fork) 2018-03-24 13:29:10 +01:00
LICENSE Update LICENSE 2015-08-09 09:20:47 +02:00
README.md - reorganized the project to match the Arduino library layout 2018-03-30 14:08:28 +02:00

OneWireArduinoSlave

An arduino library to communicate using the Dallas one-wire protocol, where the Arduino takes the role of a slave. Entirely implemented using interrupts, you can perform other tasks while communication is handled in background.

1-wire introduction

1-wire allows communication over long distances (100m and more, see Dallas documentation for details) with a single wire (plus a ground wire). You can put as much devices as you want on the same wire (they communicate one at a time). 1-wire also allows to send power over the data wire (parasitic power), but, though I haven't tried, I don't believe it would work with an Arduino. You'll need a separate 5V power source, which, if it comes next to your data wire, means you need 3 wires (5V, data, and ground). You'll also need a master controller, for example the USB adapter DS9490R, to connect to a computer, that will control communication with all 1-wire devices.

How to use this library

Take a look at the documentation of the library