Test application to read the DS1820/DS18S20/DS1920 
1-Wire Digital Thermometer.

Required on the command line is the 1-Wire Net port name:

    example:  "COM1"                (Win32 DS2480B)
              "/dev/cua0"           (Linux DS2480B)
              "1"                   (Win32 TMEX)
	      "/dev/ports/serial1"  (BeOS DS2480B)


This application uses either the 'general' or 'userial'
1-Wire Net implementations '\source\lib\userial\todo.c' or
'\source\lib\general\todo.c' 

The link file, depending on your platform, can be found in 
'\source\lib\general\link' or '\source\lib\userial\link'.

All application files can be found in the 
'\source\apps' directory.
All header and utility files can be found in the 
'\source\common' directory.  

Application File(s):		'\source\apps'
temp.c   -	example application to find and display the 
	     	temperature measurement for the 
		1-Wire Net DS1820/DS18S20/DS1920
tempm.c  -      example application to find and display the
                temperature measurement for the
                1-Wire Net DS1820/DS18S20/DS1920
                for a micro-controller.

Common Module File(s):		'\source\common'
temp10.c   - 	module that reads the temperature of 
		the DS1820/DS18S20/DS1920 
findtype.c - 	finds all of the devices of the same type 
		(family code) on a 1-Wire Net
ownet.h    -   	include file for 1-Wire Net library
crcutil.c  -    keeps track of the CRC for 8 and 16 
                bit operations 
ioutil.c   - 	I/O utility functions

