Difference between revisions of "1-wire"

From OpenCircuits
Jump to navigation Jump to search
(mention other web pages with lots of 1-wire information.)
(notes on connecting 1-wire devices to Atmel AVR microcontrollers)
 
Line 61: Line 61:
  
 
* The main page for using Arduino with 1-wire devices: http://playground.arduino.cc/Learning/OneWire
 
* The main page for using Arduino with 1-wire devices: http://playground.arduino.cc/Learning/OneWire
 +
 +
* read and write 1-wire devices with an 8-bit AVR microcontroller.
 +
** [http://www.atmel.com/Images/doc2579.pdf Atmel application note  "AVR318: Dallas 1-Wire master"]
 +
** [https://github.com/z8k/atmel/tree/master/lib/1wire Atmel application note AVR318 source code]
 +
** [http://www.avrfreaks.net/forum/ds18s20-commumicate-avr "DS18s20 communicate with avr"].
 +
 +
* [http://protocoltool.sourceforge.net Protocol Tool] supports many protocols, including 1-wire.
  
  

Latest revision as of 08:22, 8 September 2015

rough draft

The 1-wire network is a communications bus system designed by someone(?) at Dallas Semiconductor (now part of Maxim Integrated) that provides low-speed data, signaling, and power, using up a total of one pin on the CPU no matter how many peripheral chips are on that bus. (Other ways of connecting a peripheral to the CPU either require another pin for each peripheral, or require more pins for the first peripheral, or both).

The 1-wire network is perhaps the most popular way to measure temperatures at many different locations and send that data back to one central processor.


Media: A Guide to the 1WRJ45 Standard.pdf

It makes it easier to troubleshoot if each PCB has 2 RJ45 connectors (or a dual RJ45 connector), with 1 LED indicating power and 1 LED indicating 1-wire signals.

For clarity each of the 8 wires from the standard 1WRJ45 connector may be labeled with the following 2-letter PCB silkscreen abbreviation:

 1 5R (VCC return)
 2 +5 (VCC power)
 3 AR (Analog return) (?)
 4 OW (one-wire I/O)
 5 OR (one-wire return)
 6 AS (Analog signal) (?)
 7 +V (V raw power)
 8 VR (V raw return)

Further reading[edit]

Wikipedia: 1-Wire

Bich Pham. "One-Wire Serial Bus Carries Isolated Power And Data". http://electronicdesign.com/power/one-wire-serial-bus-carries-isolated-power-and-data The same circuit is also shown in "APPLICATION NOTE 3754: Single-Wire Serial Bus Carries Isolated Power and Data" http://www.maximintegrated.com/app-notes/index.mvp/id/3754 uses a MAX845 transformer driver and a transformer to send power and data from the host to the parasitic-power 1-wire device, and an optocoupler to send data from the 1-wire device back to the host.

  • 1-Wire File System (OWFS): http://owfs.org/
    • has more information on 1-wire bus wiring standards using RJ-11 or RJ45 connectors.[1]


Is it true that "IEEE 1451.4 uses the Dallas Semiconductor "one-wire" interface" ?