- 1-Wire
-
1-Wire is a device communications bus system designed by Dallas Semiconductor Corp. that provides low-speed data, signaling, and power over a single signal.[1] 1-Wire is similar in concept to I²C, but with lower data rates and longer range. It is typically used to communicate with small inexpensive devices such as digital thermometers and weather instruments. A network of 1-Wire devices with an associated master device is called a MicroLan.
One distinctive feature of the bus is the possibility to use only two wires: data and ground. To accomplish this, 1-wire devices include an 800 pF capacitor to store charge, and power the device during periods where the data line is used for data.
Dependent on function, native 1-wire devices are available as single components in integrated circuit and TO92 packaging, and in some cases a portable form called an iButton that resembles a watch battery. Manufacturers also produce products that are more complex than a single component, and use the 1-wire bus to communicate.
A 1-Wire device may be just one of many components on a circuit board within a product, but are also found in isolation within devices such as a temperature sensor probe, or attached to a device being monitored. Some laboratory systems and other data acquisition and control systems connect to 1-Wire devices using cords with modular connectors or with CAT-5 cable, with the devices themselves mounted in a socket, incorporated in a small PCB, or attached to the object being monitored. In such systems, RJ11 (6P2C or 6P4C modular plugs, commonly used for telephones) are popular.
Systems of sensors and actuators can be built by wiring together 1-Wire components, each including all of the logic needed to operate on the 1-Wire bus. Examples include temperature loggers, timers, voltage and current sensors, battery monitors, and memory. These can be connected to a PC using a bus converter. USB, RS-232 serial, and parallel port interfaces are popular solutions for connecting the MicroLan to the host PC. MicroLans also interface to microcontrollers, such as the Arduino, Parallax BASIC Stamp, Parallax Propeller, PICAXE, the Microchip PIC family and RENESAS family.
The iButton (also known as the Dallas Key) is a mechanical packaging standard that places a 1-Wire component inside a small stainless steel "button" similar to a disk-shaped battery. iButtons are connected to 1-Wire bus systems by means of sockets with contacts which touch the "lid" and "base" of the canister. Alternatively, the connection can be semi-permanent with a different socket type; the iButton clips into it, but is easily removed.
The Java Ring, a ring-mounted iButton with a Java Virtual Machine compatible with the Java Card 2.0 specification within, was given to attendees of the JavaOne 1998 conference.[2]
Each 1-Wire chip has a unique code buried within it. This feature makes the chips, especially in an iButton package, suitable for use as a key to open a lock, arm and deactivate burglar alarms, authenticate computer system users, operate time clock systems, and other similar uses. iButtons are used as Akbil smart tickets for the Public transport in Istanbul.
Contents
Use of the bus
In any MicroLan, there is always exactly one master in overall charge, which may be a PC or a microcontroller. The master initiates activity on the bus, simplifying the avoidance of collisions on the bus. Protocols are built into the software to detect collisions. After a collision, the master tries again to effect the required communication.
The Dallas 1-Wire network is physically implemented as an open drain master device connected to one or more open drain slaves.[3] A single pull-up resistor is common to all devices and acts to pull the bus up to 3 or 5 volts, and may provide power to the slave devices. Communication occurs when a master or slave asserts the bus low—that is, connects the pull up resistor to ground through its output MOSFET. Specific 1-Wire driver and bridge chips are also available. Data rates of 16.3 kbit/s can be achieved. There is also an overdrive mode which speeds up the communication by a factor of 10.
The master starts a transmission with a "reset" pulse, which pulls the wire to 0 volts for at least 480 µs. This resets every slave device on the bus, probably by depriving them all of power. After that, any slave device, if present, shows that it exists with a "presence" pulse: it holds the wire to ground for at least 60 µs after the master releases the bus.
To send a "1", the bus master software sends a very brief (1 - 15 µs) low pulse. To send a "0", the software sends a 60 µs low pulse. The falling (negative) edge of the pulse is used to start a monostable multivibrator in the slave device. The multivibrator in the slave clocks to read the data line about 30 µs after the falling edge. The slave's multivibrator unavoidably has analog tolerances that affect its timing accuracy, which is why the output pulses have to be 60 µs long, and the starting pulse can't be longer than 15 µs.
If a parallel port is inconvenient or the operating system interferes with the timing, an UART running at 100 kbit/s with a few resistors and special software can produce and sense acceptable 1-wire pulses. Serial or USB "bridge" chips are also available that handle the timing and waveform requirements of the 1-Wire bus, and are particularly useful in utilizing long (greater than 100 m) cables effectively. Up to 300 meter long buses consisting of simple twisted pair telephone cable has been tested by the manufacturer. It will however require adjustment of pull-up resistances from say 5 kΩ to 1 kΩ.
When receiving data, the master sends a 1 - 15 µs 0 volt pulse to start each bit. If the transmitting slave unit wants to send a "1", it does nothing, and the wire goes immediately up to the pulled-up voltage. If the transmitting slave wants to send a "0", it pulls the data line to ground for 60 µs.
The basic sequence is a reset pulse followed by an 8-bit command, and then data is sent or received in groups of 8-bits.
When a sequence of data is being transferred, errors can be detected with an 8-bit CRC (weak data protection).
Many devices can share the same bus. Each device on the bus has a unique 64-bit serial number. The least significant byte of the serial number is an 8-bit number that tells the type of the device. The most significant byte is a standard (for the 1-wire bus) 8-bit CRC.[4]
There are several standard broadcast commands, and commands addressed to particular devices. The master can send a selection command, and then the address of a particular device, and then the next command is executed only by the selected device.
The bus also has an algorithm to recover the address of every device on the bus. Since the address includes the device type and a CRC, recovering the address roster also produces a reliable inventory of the devices on the bus. The 64-bit address space is searched as a binary tree, allowing up to 75 devices to be found per second.
To find the devices, the master broadcasts an enumeration command, and then an address, "listening" after each bit of an address. If a slave has all the address bits so far, it returns a 0. The master uses this simple behavior to search systematically for valid sequences of address bits. The process is much faster than a brute force search of all possible 64-bit numbers because as soon as an invalid bit is detected, all subsequent address bits are known to be invalid. An enumeration of 10 or 15 devices finishes very quickly.
The location of devices on the bus is sometimes significant. For these situations, the manufacturer has a special device that either passes through the bus or switches it off. Software can therefore explore sequential "bus domains."[4]
Example communication with a device
The following signals were generated by an FPGA, which was the master for the communication with a DS2432 (EEPROM) chip, and measured with a logic analyzer. High on the 1-wire output means that the output of the FPGA is in tri-state mode and the 1-wire device can pull down the bus. Low means that the FPGA pulls down the bus. The 1-wire input is the measured bus signal. On input sample time high, the FPGA samples the input for detecting the device response and receiving bits.
For the PICAXE microcontrollers, the tutorial listed in the external links section below includes program examples for communication with many Dallas/Maxim 1-Wire devices including DS18B20, DS2406, DS2408, DS2413, DS23417, DS2433, DS2450, DS2890 and some iButton devices
Development tools
When developing and/or troubleshooting the 1-Wire bus, examination of hardware signals can be very important. Logic analyzers and bus analyzers are tools which collect, analyze, decode, store signals so people can view the high-speed waveforms at their leisure.
See also
- Single wire earth return, a technique for electric power transmission with only "1 wire" without a ground return wire path
- Touch memory
References
- ^ 1-Wire Products
- ^ An introduction to the Java Ring, by Stephen M. Curry, JavaWorld.com, April 1st, 1998.
- ^ "1-Wire online tutorial. This tutorial will give you an overview of the 1-wire protocol, its device operation and application solutions.". Archived from the original on 2009-04-25. http://www.maxim-ic.com/products/1-wire/flash/overview/index.cfm. Retrieved 2009-03-13.
- ^ a b "iButton Overview" (PDF). http://www.maxim-ic.com/products/ibutton/ibuttons/standard.pdf. 081218 maxim-ic.com
External links
- 1-Wire Devices
- iButton
- Guidelines for Reliable Long Line 1-Wire Networks
- Choosing the Right 1-Wire Master for Embedded Applications
- OWFS - 1-wire filesystem for Linux
- Guides to working with 1-Wire, for programmers and engineers
- Getting 1-wire sensors working in Linux using OWFS
- 1-Wire Arduino tutorial
- PICAXE microcontroller 1-Wire Tutorial
- DigiTemp - program to read values from 1-Wire sensors
Computer bus official and de facto standards (wired) General - System bus
- Front-side bus
- Back-side bus
- Daisy chain
- Control bus
- Address bus
- Bus contention
- Plug and play
- List of bus bandwidths
Standards - S-100 bus
- Unibus
- VAXBI
- MBus
- STD Bus
- SMBus
- Q-Bus
- ISA
- Zorro II
- Zorro III
- CAMAC
- FASTBUS
- LPC
- HP Precision Bus
- EISA
- VME
- VXI
- NuBus
- TURBOchannel
- MCA
- SBus
- VLB
- PCI
- PXI
- HP GSC bus
- CoreConnect
- InfiniBand
- UPA
- PCI-X
- AGP
- PCI Express
- Intel QuickPath Interconnect
- HyperTransport
Portable Embedded - Multidrop bus
- AMBA
- Wishbone
Storage - ST-506
- ESDI
- SMD
- Parallel ATA (PATA)
- DMA
- SSA
- HIPPI
- USB MSC
- FireWire (1394)
- Serial ATA (SATA)
- eSATA
- eSATAp
- SCSI
- Parallel SCSI
- Serial Attached SCSI (SAS)
- Fibre Channel (FC)
- iSCSI
- ATAoE
Peripheral - Apple Desktop Bus
- HIL
- MIDI
- Multibus
- RS-232 (serial port)
- DMX512-A
- IEEE-488 (GPIB)
- EIA/RS-422
- IEEE-1284 (parallel port)
- UNI/O
- ACCESS.bus
- 1-Wire
- I²C
- SPI
- EIA/RS-485
- Parallel SCSI
- Profibus
- USB
- FireWire (1394)
- Fibre Channel
- Camera Link
- External PCI Express x16
- Thunderbolt
Automation protocols Process automation - BSAP
- CC-Link Industrial Networks
- CIP
- Controller area network
- ControlNet
- DeviceNet
- DF-1
- DirectNET
- EtherCAT
- Ethernet Global Data (EGD)
- Ethernet Powerlink
- EtherNet/IP
- FINS
- FOUNDATION fieldbus (H1, HSE)
- GE SRTP
- HART Protocol
- Honeywell SDS
- HostLink
- INTERBUS
- MECHATROLINK
- MelsecNet
- Modbus
- Optomux
- PieP
- Profibus
- PROFINET IO
- SERCOS interface
- SERCOS III
- Sinec H1
- SynqNet
- TTEthernet
Industrial control system Building automation Power system automation - IEC 60870-5
- DNP3
- IEC 60870-6
- IEC 61850
- IEC 62351
- Modbus
- Profibus
Automatic meter reading - ANSI C12.18
- IEC 61107
- DLMS/IEC 62056
- M-Bus
- Modbus
- ZigBee Smart Energy 2.0
Automobile / Vehicle Categories:- Serial buses
Wikimedia Foundation. 2010.