Mahesh Phalke / tempsensors_prv
Committer:
mahphalke
Date:
Fri Mar 19 12:27:14 2021 +0530
Revision:
1:851dbb04c1e5
Parent:
0:854742598c2c
Copyright updates

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mahphalke 0:854742598c2c 1 /*!
mahphalke 0:854742598c2c 2 *****************************************************************************
mahphalke 0:854742598c2c 3 @file: rtd.h
mahphalke 0:854742598c2c 4
mahphalke 0:854742598c2c 5 @brief:
mahphalke 0:854742598c2c 6
mahphalke 0:854742598c2c 7 @details:
mahphalke 0:854742598c2c 8 -----------------------------------------------------------------------------
mahphalke 0:854742598c2c 9 Copyright (c) 2018, 2020 Analog Devices, Inc. All rights reserved.
mahphalke 0:854742598c2c 10
mahphalke 0:854742598c2c 11 This software is proprietary to Analog Devices, Inc. and its licensors.
mahphalke 0:854742598c2c 12 By using this software you agree to the terms of the associated
mahphalke 0:854742598c2c 13 Analog Devices Software License Agreement.
mahphalke 0:854742598c2c 14
mahphalke 0:854742598c2c 15 *****************************************************************************/
mahphalke 0:854742598c2c 16
mahphalke 0:854742598c2c 17
mahphalke 0:854742598c2c 18 #ifndef RTD_H_
mahphalke 0:854742598c2c 19 #define RTD_H_
mahphalke 0:854742598c2c 20
mahphalke 0:854742598c2c 21 class RTD
mahphalke 0:854742598c2c 22 {
mahphalke 0:854742598c2c 23 public:
mahphalke 0:854742598c2c 24 /**
mahphalke 0:854742598c2c 25 * @brief converts a resistance to a temperature
mahphalke 0:854742598c2c 26 *
mahphalke 0:854742598c2c 27 * @param [in] resistance - the resistance of the temperature sensor
mahphalke 0:854742598c2c 28 *
mahphalke 0:854742598c2c 29 * @return temperature
mahphalke 0:854742598c2c 30 */
mahphalke 0:854742598c2c 31 virtual float convertResistanceToTemperature(const float resistance) = 0;
mahphalke 0:854742598c2c 32 };
mahphalke 0:854742598c2c 33
mahphalke 0:854742598c2c 34 #endif