Jason Schilling / Mbed 2 deprecated miniProject7

Dependencies:   mbed TextLCD

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?

UserRevisionLine numberNew 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