Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
rtd.h@2:bcfa5a2f21c9, 2021-03-19 (annotated)
- Committer:
- mahphalke
- Date:
- Fri Mar 19 08:09:19 2021 +0000
- Revision:
- 2:bcfa5a2f21c9
- Parent:
- 1:f65f6fadda5d
Fixed line ending issues
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| mahphalke | 1:f65f6fadda5d | 1 | /*! |
| mahphalke | 1:f65f6fadda5d | 2 | ***************************************************************************** |
| mahphalke | 1:f65f6fadda5d | 3 | @file: rtd.h |
| mahphalke | 1:f65f6fadda5d | 4 | |
| mahphalke | 1:f65f6fadda5d | 5 | @brief: |
| mahphalke | 1:f65f6fadda5d | 6 | |
| mahphalke | 1:f65f6fadda5d | 7 | @details: |
| mahphalke | 1:f65f6fadda5d | 8 | ----------------------------------------------------------------------------- |
| mahphalke | 1:f65f6fadda5d | 9 | Copyright (c) 2018, 2020 Analog Devices, Inc. All rights reserved. |
| mahphalke | 1:f65f6fadda5d | 10 | |
| mahphalke | 1:f65f6fadda5d | 11 | This software is proprietary to Analog Devices, Inc. and its licensors. |
| mahphalke | 1:f65f6fadda5d | 12 | By using this software you agree to the terms of the associated |
| mahphalke | 1:f65f6fadda5d | 13 | Analog Devices Software License Agreement. |
| mahphalke | 1:f65f6fadda5d | 14 | |
| mahphalke | 1:f65f6fadda5d | 15 | *****************************************************************************/ |
| mahphalke | 1:f65f6fadda5d | 16 | |
| mahphalke | 1:f65f6fadda5d | 17 | |
| mahphalke | 1:f65f6fadda5d | 18 | #ifndef RTD_H_ |
| mahphalke | 1:f65f6fadda5d | 19 | #define RTD_H_ |
| mahphalke | 1:f65f6fadda5d | 20 | |
| mahphalke | 1:f65f6fadda5d | 21 | class RTD |
| mahphalke | 1:f65f6fadda5d | 22 | { |
| mahphalke | 1:f65f6fadda5d | 23 | public: |
| mahphalke | 1:f65f6fadda5d | 24 | /** |
| mahphalke | 1:f65f6fadda5d | 25 | * @brief converts a resistance to a temperature |
| mahphalke | 1:f65f6fadda5d | 26 | * |
| mahphalke | 1:f65f6fadda5d | 27 | * @param [in] resistance - the resistance of the temperature sensor |
| mahphalke | 1:f65f6fadda5d | 28 | * |
| mahphalke | 1:f65f6fadda5d | 29 | * @return temperature |
| mahphalke | 1:f65f6fadda5d | 30 | */ |
| mahphalke | 1:f65f6fadda5d | 31 | virtual float convertResistanceToTemperature(const float resistance) = 0; |
| mahphalke | 1:f65f6fadda5d | 32 | }; |
| mahphalke | 1:f65f6fadda5d | 33 | |
| mahphalke | 1:f65f6fadda5d | 34 | #endif |