1 Arduino Library for Dallas Temperature ICs
2 ==========================================
7 This library supports the following devices:
9 DS18S20 - Please note there appears to be an issue with this series.
12 You will need a pull-up resistor of about 5 KOhm between the 1-Wire data line
13 and your 5V power. If you are using the DS18B20, ground pins 1 and 3. The
14 centre pin is the data line '1-wire'.
16 We have included a "REQUIRESNEW" and "REQUIRESALARMS" definition. If you
17 want to slim down the code feel free to use either of these by including
18 #define REQUIRESNEW or #define REQUIRESALARMS a the top of DallasTemperature.h
23 The OneWire code has been derived from
24 http://www.arduino.cc/playground/Learning/OneWire.
25 Miles Burton <miles@mnetcs.com> originally developed this library.
26 Tim Newsome <nuisance@casualhacker.net> added support for multiple sensors on
28 Guil Barros [gfbarros@bappos.com] added getTempByAddress (v3.5)
33 You can find the latest version of the library at
34 http://milesburton.com/index.php?title=Dallas_Temperature_Control_Library
39 This library is free software; you can redistribute it and/or
40 modify it under the terms of the GNU Lesser General Public
41 License as published by the Free Software Foundation; either
42 version 2.1 of the License, or (at your option) any later version.
44 This library is distributed in the hope that it will be useful,
45 but WITHOUT ANY WARRANTY; without even the implied warranty of
46 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
47 Lesser General Public License for more details.
49 You should have received a copy of the GNU Lesser General Public
50 License along with this library; if not, write to the Free Software
51 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA