'\" '\" Copyright (c) 2003-2004 Paul H Alfille, MD '\" (paul.alfille@gmail.com) '\" '\" Program manual page for the OWFS -- 1-wire filesystem package '\" Based on Dallas Semiconductor, Inc's datasheets, and trial and error. '\" '\" Free for all use. No warranty. None. Use at your own risk. '\" .TH OWFS 1 2004 "OWFS Manpage" "One-Wire File System" .SH NAME .B owfs \- 1-wire filesystem .SH SYNOPSIS .B owfs '\" '\" Copyright (c) 2003-2004 Paul H Alfille, MD '\" (paul.alfille@gmail.com) '\" '\" Program manual page for the OWFS -- 1-wire filesystem package '\" Based on Dallas Semiconductor, Inc's datasheets, and trial and error. '\" '\" Free for all use. No warranty. None. Use at your own risk. '\" [ .I \-c config ] .I \-d serialport | .I \-u | .I \-s [host:]port .I \-m mountdir .SH "DESCRIPTION" '\" '\" Copyright (c) 2003-2004 Paul H Alfille, MD '\" (paul.alfille@gmail.com) '\" '\" Program manual page for the OWFS -- 1-wire filesystem package '\" Based on Dallas Semiconductor, Inc's datasheets, and trial and error. '\" '\" Free for all use. No warranty. None. Use at your own risk. '\" .SS 1-Wire .I 1-wire is a wiring protocol and series of devices designed and manufactured by Dallas Semiconductor, Inc. The bus is a low-power low-speed low-connector scheme where the data line can also provide power. .PP Each device is uniquely and unalterably numbered during manufacture. There are a wide variety of devices, including memory, sensors (humidity, temperature, voltage, contact, current), switches, timers and data loggers. More complex devices (like thermocouple sensors) can be built with these basic devices. There are also 1-wire devices that have encryption included. .PP The 1-wire scheme uses a single .I bus master and multiple .I slaves on the same wire. The bus master initiates all communication. The slaves can be individually discovered and addressed using their unique ID. .PP Bus masters come in a variety of configurations including serial, parallel, i2c, network or USB adapters. .SS OWFS design .I OWFS is a suite of programs that designed to make the 1-wire bus and its devices easily accessible. The underlying principle is to create a virtual filesystem, with the unique ID being the directory, and the individual properties of the device are represented as simple files that can be read and written. .PP Details of the individual slave or master design are hidden behind a consistent interface. The goal is to provide an easy set of tools for a software designer to create monitoring or control applications. There are some performance enhancements in the implementation, including data caching, parallel access to bus masters, and aggregation of device communication. Still the fundamental goal has been ease of use, flexibility and correctness rather than speed. .SS owfs .B owfs (1) is the filesystem client of the .I OWFS family of programs. It runs on linux, freebsd and Mac OS X, and requires the .I fuse kernel module and library. (http://fuse.sourceforge.net) which is a user-mode filesystem driver. .PP Essentially, the entire 1-wire bus is mounted to a place in your filesystem. All the 1-wire devices are accessible using standard file operations (read, write, directory listing). The system is safe, no actual files are exposed, these files are virtual. Not all operations are supported. Specifically, file creation, deletion, linking and renaming are not allowed. (You can link from outside to a owfs file, but not the other way around). '\" '\" Copyright (c) 2003-2004 Paul H Alfille, MD '\" (paul.alfille@gmail.com) '\" '\" Program manual page for the OWFS -- 1-wire filesystem package '\" Based on Dallas Semiconductor, Inc's datasheets, and trial and error. '\" '\" Free for all use. No warranty. None. Use at your own risk. '\" .SH "Device Options (1-wire Bus Master)" These options specify the device (bus master) connecting the computer to the 1-wire bus. The 1-wire slaves are connected to the 1-wire bus, and the bus master connects to a port on the computer and controls the 1-wire bus. The bus master is either an actual physical device, the kernel w1 module, or an .B owserver (1). .P At least one device option is required. There is no default. More than one device can be listed, and all will be used. (A logical union unless you explore the \fI/bus.n/\fR directories.) .P Linux and BSD enforce a security policy restricting access to hardware ports. You must have sufficient rights to access the given port or access will silently fail. .SH "* Serial devices" .I port specifies a serial port, e.g. .I /dev/ttyS0 or an USB port accessed as serial port, e.g. \fI/dev/ttyUSB0\fR .P If OWFS was built with \fBlibftdi\fR support, you may be able to use the .I ftdi: prefix in any of the options as \fIport\fR to address a FTDI-based USB device. .br For details, see the FTDI ADDRESSING section. .TP \fI-d port\fI \fR|\fR \fI--device=port\fI \fB(DS2480B)\fB DS2480B-based bus master (like the \fBDS9097U\fR or an adapter of the \fBLINK\fR family in emulation mode). If the adapter doesn't respond, a passive type (DS9907E or diode/resistor) circuit will be assumed. .TP .I --serial_flextime | --serial_regulartime \fB(DS2480B)\fB .br Changes details of bus timing (see DS2480B datasheet). Some devices, like the .I Swart LCD cannot work with .I flextime. .TP \fI--baud=\fI\fR1200|9600|19200|38400|57600|115200\fR \fB(DS2480B,LINK,HA5)\fB Sets the initial serial port communication speed for all bus masters. Not all serial devices support all speeds. You can change the individual bus master speed for a device of the .B LINK family and .B DS2880B in the interface/settings directory. The .B HA5 speed is set in hardware, so the command line baud rate should match that rate. .br Usually the default settings (9600 for a device of the .B LINK family and .B DS2480B ) and 115200 for the .B HA5 are sane and shouldn't be changed. .TP \fI--straight_polarity\fI \fR|\fR \fI--reverse_polarity\fI \fB(DS2480B)\fB Reverse polarity of the DS2480B output transistors? Not needed for the DS9097U, but required for some other designs. .TP \fI--link=port\fI \fB(LINK)\fB .B iButtonLink .I LINK adapter (all versions) in non-emulation mode. Uses an ascii protocol over serial. .br This supports the simplified \fIftdi:\fB\fR addressing scheme. .TP \fI--ha7e=port\fI \fB(HA7E)\fB .B Embedded Data Systems .I HA7E adapter ( and .I HA7S ) in native ascii mode. .TP \fI\-\-ha5=port | \-\-ha5=port:a | \-\-ha5=port:acg\fI \fB(HA5)\fB .B Embedded Data Systems .I HA5 mutidrop adapter in native ascii mode. Up to 26 adapters can share the same port, each with an assigned letter. If no letter specified, the program will scan for the first response (which may be slow). .TP .I --checksum | --no_checksum \fB(HA5)\fB .br Turn on (default) or off the checksum feature of the HA5 communication. .TP \fI--passive=port\fR | \fI--ha2=port\fR | \fI--ha3=port\fR | \fI--ha4b=port \fB(Passive)\fB Passive 1-wire adapters. Powered off the serial port and using passive electrical components (resitors and diodes). .TP .I --8bit | --6bit \fB(Passive)\fB .br Synthesize the 1-wire waveforme using a 6-bit (default) serial word, or 8-bit word. Not all UART devices support 6 bit operation. .TP \fI--timeout_serial=5\fI Timeout (in seconds) for all serial communications. 5 second default. Can be altered dynamically under .I /settings/timeout/serial .SH "* USB devices" The only supported true USB bus masters are based on the DS2490 chip. The most common is the DS9490R which has an included 1-wire ID slave with family code 81. .P There are also bus masters based on the serial chip with a USB to serial conversion built in. These are supported by the serial bus master protocol. .TP .I \-u \fR|\ \fI\-\-usb DS2490 based bus master (like the DS9490R). .TP .I \-u2 \fR|\ \fI\-\-usb=2 Use the second USB bus master. (The order isn't predicatble, however, since the operating system does not consistently order USB devices). .TP .I \-uall \fR|\ \fI\-\-usb=ALL Use all the USB devices. .TP .I \-\-usb_flextime | \-\-usb_regulartime Changes the details of 1-wire waveform timing for certain network configurations. .TP .I \-\-altusb Willy Robion's alternative USB timing. .TP .I \-\-timeout_usb=5 Timeout for USB communications. This has a 5 second default and can be changed dynamically under .I /settings/timeout/usb .SH "* I2C devices" I2C is 2 wire protocol used for chip-to-chip communication. The bus masters: .I DS2482-100, DS2482-101 and .I DS2482-800 can specify (via pin voltages) a subset of addresses on the i2c bus. Those choices are .P .I i2c_address .TP 0,1,2,3 0x18,0x19,0x1A,0x1B .TP 4,5,6,7 0x1C,0x1D,0x1E,0x1F (DS2482-800 only) .P .I port for i2c masters have the form .I /dev/i2c-0, /dev/i2c-1, ... .TP \fI\-d port\fR | \fI\-\-device=port This simple form only permits a specific .I port and the first available .I i2c_address .TP \fI\-\-i2c=port\fR | \fI\-\-i2c=port:i2c_address\fR | \fI\-\-i2c=port:ALL Specific i2c .I port and the .I i2c_address is either the first, specific, or all or them. The .I i2c_address is 0,1,2,... .TP \fI\-\-i2c\fR | \fI\-\-i2c=:\fR | \fI\-\-i2c=ALL:ALL Search the available i2c buses for either the first, the first, or every i2c adapter. .P The .I DS2482-800 masters 8 1-wire buses and so will generate 8 .I /bus.n entries. .SH "* Network devices" These bus masters communicate via the tcp/ip network protocol and so can be located anywhere on the network. The .I network_address is of the form tcp_address:port .P E.g. 192.168.0.1:3000 or localhost:3000 .TP .I \-\-link=network_address LinkHubE network LINK adapter by .B iButtonLink .TP .I \-\-ha7net=network_address | \-\-ha7net HA7Net network 1-wire adapter with specified tcp address or discovered by udp multicast. By .B Embedded Data Systems .br .I \-\-timeout_ha7=60 specific timeout for HA7Net communications (60 second default). .TP .I \-\-etherweather=network_address Etherweather adapter .TP \fI\-s network_address\fR | \fI\-\-server=network_address Location of an .B owserver (1) program that talks to the 1-wire bus. The default port is 4304. .TP .I \-\-timeout_network=5 Timeout for network bus master communications. This has a 1 second default and can be changed dynamically under .I /settings/timeout/network .SH "* Simulated devices" Used for testing and development. No actual hardware is needed. Useful for separating the hardware development from the rest of the software design. .TP .I devices is a list of comma-separated 1-wire devices in the following formats. Note that a valid CRC8 code is created automatically. .TP 10,05,21 Hexadecimal .I family codes (the DS18S20, DS2405 and DS1921 in this example). .TP 10.12AB23431211 A more complete hexadecimal unique address. Useful when an actual hardware device should be simulated. .TP DS2408,DS2489 The 1-wire device name. (Full ID cannot be speciifed in this format). .TP .I \-\-fake=devices Random address and random values for each read. The device ID is also random (unless specified). .TP .I \-\-temperature_low=12 \-\-temperature_high=44 Specify the temperature limits for the .I fake adapter simulation. These should be in the same temperature scale that is specified in the command line. It is possible to change the limits dynamically for each adapter under .I /bus.x/interface/settings/simulated/[temperature_low|temperature_high] .TP .I \-\-tester=devices Predictable address and predictable values for each read. (See the website for the algorithm). .SH "* w1 kernel module" This a linux-specific option for using the operating system's access to bus masters. Root access is required and the implementation was still in progress as of owfs v2.7p12 and linux 2.6.30. .P Bus masters are recognized and added dynamically. Details of the physical bus master are not accessible, bu they include USB, i2c and a number of GPIO designs on embedded boards. .P Access is restrict to superuser due to the netlink broadcast protocol employed by w1. Multitasking must be configured (threads) on the compilation. .TP .I \-\-w1 Use the linux kernel w1 virtual bus master. .TP .I \-\-timeout_w1=10 Timeout for w1 netlink communications. This has a 10 second default and can be changed dynamically under .I /settings/timeout/w1 .SH "FTDI ADDRESSING" FTDI is a brand of USB-to-serial chips which are very common. If your serial device is connected via a USB serial dongle based on a FTDI chip, or if your adapter uses a built-in FTDI USB chip (for example, the LinkUSB), you can use this FTDI addressing. .P The main benefit with this mode of access is that we can decrease the communication delay, yielding twice as fast 1-Wire communication in many cases. .P The following values for \fIport\fR can be used to identify a specific FTDI port in several of the serial devices options. .br Note that this requires that OWFS is built with libftdi support, which might not be the case in standard repositories. .TP \fIftdi:d:\fB\fB path of bus and device-node (e.g. "003/001") within usb device tree (usually at /proc/bus/usb/ or /dev/bus/usb/) .TP \fIftdi:i:\fI\fB:\fB first device with given vendor and product id, ids can be decimal, octal (preceded by "0") or hex (preceded by "0x") .TP \fIftdi:i:\fI\fB::\fB as above with index being the number of the device (starting with 0) if there are more than one .TP \fIftdi:s:\fI\fB::\fB the device with given vendor id, product id and serial number string .P The above formats are parsed fully by libftdi (minus the \fIftdi:\fR prefix). .SS Simplified device \fBserial-only\fB support An additional format is supported, for certain bus types. This only specifies the USB serial number. .TP \fIftdi:\fI\fB\fB Identifies a FTDI device by serial number only. Currently, this is only valid for the VID/PID found on the LinkUSB (i.e. --link). Note that those VID/PID's are the default for any FT232R device, and in no way exclusive to LinkUSB. .SS Permsissions In order to run \fBowserver (1)\fR without root privileges - as you should, you must have sufficient permissions to the raw USB node your adapter is connected to e.g. "003/001" (usually at /proc/bus/usb/ or /dev/bus/usb/). .P An easy way to achieve this would be using \fBchown (1)\fR: .TP \fBsudo chown : /dev/bus/usb/003/001 changes the group of the raw USB node "003/001" from default "root" to "" .P You can also write a \fBudev (1)\fR rule for your adapter: .TP \fBSUBSYSTEM=="usb", DRIVER=="usb", ATTR{idVendor}=="0403", ATTR{idProduct}=="6001", ATTR{serial}=="AK0048A0", GROUP="owsrv"\fR saved as a file e.g. "10-FTDI-LinkUSB.rules" in "/etc/udev/rules.d/", this rule will automate the process of changing the group to "owsrv" of the raw USB node the LinkUSB adapter with S/N:AK0048A0 is connected to. .SS Serial USB node Communication in FTDI mode accesses the RAW USB node and NOT the serial USB node your OS might have created automatically e.g. /dev/ttyUSB0. .br As a side effect, if existing, the serial USB node e.g. /dev/ttyUSB0 is removed on successful starting of \fBowserver (1)\fR. After it's termination un- and re-plugging the adapter, or un- and reloading of the module ftdi_sio will recreate the serial USB node. .SS Finding FTDI related information on your USB adapter \fBowusbprobe\fR is THE tool to find the information needed for direct FTDI addressing .br However this tool might not yet be packaged in your version. Alternatively you can also use lsusb to find the usb node your adapter is connected to, and then use lsusb again on this very node: .TP \fBsudo lsusb -D /path/to/your/raw/USB/device/node |egrep "idVendor|idProduct|iSerial" sudo is necessary to get the value of iSerial field, if the permissions are still unchanged .SS Examples FTDI addressing .TP \fBowserver -d ftdi:s:0x0403:0x6001:A800bXHr\fR starts owserver with a LinkUSB (VID:0x0403,PID:0x6001,S/N:A800bXHr) as bus master in DS2480B-based emulation mode with direct FTDI access .TP \fBowserver --link=ftdi:A800bXHr\fR starts owserver with a LinkUSB (S/N:A800bXHr) as bus master identified by serial number only in native mode with direct FTDI access .SH SPECIFIC OPTIONS .SS \-m \-\-mountpoint=directory_path Path of a directory to mount the 1-wire file system .PP The mountpoint is required. There is no default. .SS \-\-allow_other Shorthand for fuse mount option "\-o allow_other" Allows uther users to see the fuse (owfs) mount point and file system. Requires a setting in /etc/fuse.conf as well. .SS \-\-fuse-opt "options" Sends options to the fuse-mount process. Options should be quoted, e.g. "\"\-o allow_other\"" . '\" '\" Copyright (c) 2003-2004 Paul H Alfille, MD '\" (paul.alfille@gmail.com) '\" '\" Program manual page for the OWFS -- 1-wire filesystem package '\" Based on Dallas Semiconductor, Inc's datasheets, and trial and error. '\" '\" Free for all use. No warranty. None. Use at your own risk. '\" .SH TEMPERATURE SCALE OPTIONS .SS \-C \-\-Celsius .SS \-F \-\-Fahrenheit .SS \-K \-\-Kelvin .SS \-R \-\-Rankine Temperature scale used for data output. Celsius is the default. .PP Can also be changed within the program at .I /settings/units/temperature_scale '\" '\" Copyright (c) 2003-2004 Paul H Alfille, MD '\" (paul.alfille@gmail.com) '\" '\" Program manual page for the OWFS -- 1-wire filesystem package '\" Based on Dallas Semiconductor, Inc's datasheets, and trial and error. '\" '\" Free for all use. No warranty. None. Use at your own risk. '\" .SH PRESSURE SCALE OPTIONS .SS \-\-mbar (default) .SS \-\-atm .SS \-\-mmHg .SS \-\-inHg .SS \-\-psi .SS \-\-Pa Pressure scale used for data output. Millibar is the default. .PP Can also be changed within the program at .I /settings/units/pressure_scale '\" '\" Copyright (c) 2003-2004 Paul H Alfille, MD '\" (paul.alfille@gmail.com) '\" '\" Program manual page for the OWFS -- 1-wire filesystem package '\" Based on Dallas Semiconductor, Inc's datasheets, and trial and error. '\" '\" Free for all use. No warranty. None. Use at your own risk. '\" .SH FORMAT OPTIONS Choose the representation of the 1-wire unique identifiers. OWFS uses these identifiers as unique directory names. .PP Although several display formats are selectable, all must be in .I family-id-crc8 form, unlike some other programs and the labelling on iButtons, which are .I crc8-id-family form. .SS \-f \-\-format="f[.]i[[.]c]" Display format for the 1-wire devices. Each device has a 8byte address, consisting of: .TP .I f family code, 1 byte .TP .I i ID number, 6 bytes .TP .I c CRC checksum, 1 byte .PP Possible formats are .I f.i (default, 01.A1B2C3D4E5F6), .I fi fic f.ic f.i.c and .I fi.c .PP All formats are accepted as input, but the output will be in the specified format. .PP The address elements can be retrieved from a device entry in owfs by the .I family, id and crc8 properties, and as a whole with .I address. The reversed id and address can be retrieved as .I r_id and .I r_address. '\" '\" Copyright (c) 2003-2004 Paul H Alfille, MD '\" (paul.alfille@gmail.com) '\" '\" Program manual page for the OWFS -- 1-wire filesystem package '\" Based on Dallas Semiconductor, Inc's datasheets, and trial and error. '\" '\" Free for all use. No warranty. None. Use at your own risk. '\" .SH JOB CONTROL OPTIONS .SS \-r \-\-readonly .SS \-w \-\-write Do we allow writing to the 1-wire bus (writing memory, setting switches, limits, PIOs)? The .I write option is available for symmetry, it's the default. .SS \-P \-\-pid-file "filename" Places the PID -- process ID of owfs into the specified filename. Useful for startup scripts control. .SS \-\-background | \-\-foreground Whether the program releases the console and runs in the .I background after evaluating command line options. .I background is the default. .SS \-\-error_print=0|1|2|3 .TP .I =0 default mixed destination: stderr foreground / syslog background .TP .I =1 syslog only .TP .I =2 stderr only .TP .I =3 /dev/null (quiet mode). .SS \-\-error_level=0..9 .TP .I =0 default errors only .TP .I =1 connections/disconnections .TP .I =2 all high level calls .TP .I =3 data summary for each call .TP .I =4 details level .TP .I >4 debugging chaff .PP .I --error_level=9 produces a lot of output '\" '\" Copyright (c) 2003-2004 Paul H Alfille, MD '\" (paul.alfille@gmail.com) '\" '\" Program manual page for the OWFS -- 1-wire filesystem package '\" Based on Dallas Semiconductor, Inc's datasheets, and trial and error. '\" '\" Free for all use. No warranty. None. Use at your own risk. '\" .SH CONFIGURATION FILE .SS -c file | --configuration file Name of an .B owfs (5) configuration file with more command line parameters +.PP +On Debian, +.B owfs (1) +always reads +.I /etc/owfs.conf '\" '\" Copyright (c) 2003-2004 Paul H Alfille, MD '\" (paul.alfille@gmail.com) '\" '\" Program manual page for the OWFS -- 1-wire filesystem package '\" Based on Dallas Semiconductor, Inc's datasheets, and trial and error. '\" '\" Free for all use. No warranty. None. Use at your own risk. '\" .SH HELP OPTIONS See also this man page and the web site http://www.owfs.org .SS \-h \-\-help=[device|cache|program|job|temperature] Shows basic summary of options. .TP .I device 1-wire bus master options .TP .I cache cache and communication size and timing .TP .I program mountpoint or TCP server settings .TP .I job control and debugging options .TP .I temperature Unique ID display format and temperature scale .SS \-V \-\-version .I Version of this program and related libraries. '\" '\" Copyright (c) 2003-2004 Paul H Alfille, MD '\" (paul.alfille@gmail.com) '\" '\" Program manual page for the OWFS -- 1-wire filesystem package '\" Based on Dallas Semiconductor, Inc's datasheets, and trial and error. '\" '\" Free for all use. No warranty. None. Use at your own risk. '\" .SH TIME OPTIONS Timeouts for the bus masters were previously listed in .I Device options. Timeouts for the cache affect the time that data stays in memory. Default values are shown. .SS --timeout_volatile=15 Seconds until a .I volatile property expires in the cache. Volatile properties are those (like temperature) that change on their own. .PP Can be changed dynamically at .I /settings/timeout/volatile .SS --timeout_stable=300 Seconds until a .I stable property expires in the cache. Stable properties are those that shouldn't change unless explicitly changed. Memory contents for example. .PP Can be changed dynamically at .I /settings/timeout/stable .SS --timeout_directory=60 Seconds until a .I directory listing expires in the cache. Directory lists are the 1-wire devices found on the bus. .PP Can be changed dynamically at .I /settings/timeout/directory .SS --timeout_presence=120 Seconds until the .I presence and bus location of a 1-wire device expires in the cache. .PP Can be changed dynamically at .I /settings/timeout/presence .P .B There are also timeouts for specific program responses: .SS --timeout_server=5 Seconds until the expected response from the .B owserver (1) is deemed tardy. .PP Can be changed dynamically at .I /settings/timeout/server .SS --timeout_ftp=900 Seconds that an ftp session is kept alive. .PP Can be changed dynamically at .I /settings/timeout/ftp .SH EXAMPLE .TP owfs \-d /dev/ttyS0 \-m /mnt/1wire Bus master on serial port .TP owfs \-F \-u \-m /mnt/1wire USB adapter, temperatures reported in Fahrenheit .TP owfs \-s 10.0.1.2:4304 \-m /mnt/1wire Connect to an .B owserver (1) process that was started on another machine at tcp port 4304 .SH SEE ALSO .SS Programs .B owfs (1) owhttpd (1) owftpd (1) owserver (1) .B owdir (1) owread (1) owwrite (1) owpresent (1) .B owtap (1) .SS Configuration and testing .B owfs (5) owtap (1) owmon (1) .SS Language bindings .B owtcl (3) owperl (3) owcapi (3) .SS Clocks .B DS1427 (3) DS1904(3) DS1994 (3) DS2404 (3) DS2404S (3) DS2415 (3) DS2417 (3) .SS ID .B DS2401 (3) DS2411 (3) DS1990A (3) .SS Memory .B DS1982 (3) DS1985 (3) DS1986 (3) DS1991 (3) DS1992 (3) DS1993 (3) DS1995 (3) DS1996 (3) DS2430A (3) DS2431 (3) DS2433 (3) DS2502 (3) DS2506 (3) DS28E04 (3) DS28EC20 (3) .SS Switches .B DS2405 (3) DS2406 (3) DS2408 (3) DS2409 (3) DS2413 (3) DS28EA00 (3) .SS Temperature .B DS1822 (3) DS1825 (3) DS1820 (3) DS18B20 (3) DS18S20 (3) DS1920 (3) DS1921 (3) DS1821 (3) DS28EA00 (3) DS28E04 (3) .SS Humidity .B DS1922 (3) .SS Voltage .B DS2450 (3) .SS Resistance .B DS2890 (3) .SS Multifunction (current, voltage, temperature) .B DS2436 (3) DS2437 (3) DS2438 (3) DS2751 (3) DS2755 (3) DS2756 (3) DS2760 (3) DS2770 (3) DS2780 (3) DS2781 (3) DS2788 (3) DS2784 (3) .SS Counter .B DS2423 (3) .SS LCD Screen .B LCD (3) DS2408 (3) .SS Crypto .B DS1977 (3) .SS Pressure .B DS2406 (3) -- TAI8570 .SH AVAILABILITY http://www.owfs.org .SH AUTHOR Paul Alfille (paul.alfille@gmail.com)