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.
Temperature.h@5:8582a28cf944, 2019-01-17 (annotated)
- Committer:
- nthompson22
- Date:
- Thu Jan 17 06:04:45 2019 +0000
- Revision:
- 5:8582a28cf944
- Parent:
- 3:7d5e3b2ed878
Final Product
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
nthompson22 | 3:7d5e3b2ed878 | 1 | #ifndef TEMPERATURE_H |
nthompson22 | 3:7d5e3b2ed878 | 2 | #define TEMPERATURE_H |
nthompson22 | 3:7d5e3b2ed878 | 3 | #include "mbed.h" |
nthompson22 | 5:8582a28cf944 | 4 | extern I2C i2cTemp; |
nthompson22 | 3:7d5e3b2ed878 | 5 | float tempFar(float temp); |
nthompson22 | 3:7d5e3b2ed878 | 6 | float tempRan(float temp); |
nthompson22 | 3:7d5e3b2ed878 | 7 | float tempKel(float temp); |
nthompson22 | 3:7d5e3b2ed878 | 8 | void tempConfig(void); |
nthompson22 | 5:8582a28cf944 | 9 | float readTemp(); |
nthompson22 | 3:7d5e3b2ed878 | 10 | #endif |