Sensor with Web Server

Dependencies:   EthernetInterface mbed-rpc mbed-rtos mbed

Committer:
afilipem
Date:
Tue Apr 08 12:13:32 2014 +0000
Revision:
0:c385e589a779
1 version;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
afilipem 0:c385e589a779 1 /*
afilipem 0:c385e589a779 2 * DS18S20. Maxim DS18S20 One-Wire Thermometer.
afilipem 0:c385e589a779 3 * Uses the OneWireCRC library.
afilipem 0:c385e589a779 4 *
afilipem 0:c385e589a779 5 * Copyright (C) <2010> Petras Saduikis <petras@petras.co.uk>
afilipem 0:c385e589a779 6 *
afilipem 0:c385e589a779 7 * This file is part of OneWireThermometer.
afilipem 0:c385e589a779 8 *
afilipem 0:c385e589a779 9 * OneWireThermometer is free software: you can redistribute it and/or modify
afilipem 0:c385e589a779 10 * it under the terms of the GNU General Public License as published by
afilipem 0:c385e589a779 11 * the Free Software Foundation, either version 3 of the License, or
afilipem 0:c385e589a779 12 * (at your option) any later version.
afilipem 0:c385e589a779 13 *
afilipem 0:c385e589a779 14 * OneWireThermometer is distributed in the hope that it will be useful,
afilipem 0:c385e589a779 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
afilipem 0:c385e589a779 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
afilipem 0:c385e589a779 17 * GNU General Public License for more details.
afilipem 0:c385e589a779 18 *
afilipem 0:c385e589a779 19 * You should have received a copy of the GNU General Public License
afilipem 0:c385e589a779 20 * along with OneWireThermometer. If not, see <http://www.gnu.org/licenses/>.
afilipem 0:c385e589a779 21 */
afilipem 0:c385e589a779 22
afilipem 0:c385e589a779 23 #ifndef SNATCH59_DS18S20_H
afilipem 0:c385e589a779 24 #define SNATCH59_DS18S20_H
afilipem 0:c385e589a779 25
afilipem 0:c385e589a779 26 #include "OneWireThermometer.h"
afilipem 0:c385e589a779 27
afilipem 0:c385e589a779 28 class DS18S20 : public OneWireThermometer
afilipem 0:c385e589a779 29 {
afilipem 0:c385e589a779 30 public:
afilipem 0:c385e589a779 31 DS18S20(bool crcOn, bool useAddr, bool parasitic, PinName pin);
afilipem 0:c385e589a779 32
afilipem 0:c385e589a779 33 virtual void setResolution(eResolution resln) { }; // do nothing
afilipem 0:c385e589a779 34
afilipem 0:c385e589a779 35 protected:
afilipem 0:c385e589a779 36 virtual float calculateTemperature(BYTE* data);
afilipem 0:c385e589a779 37 };
afilipem 0:c385e589a779 38
afilipem 0:c385e589a779 39 #endif