Mackenzie Fraser / LM19_Driver

LM19_Driver.h

Committer:
mackenziefraser
Date:
2021-11-10
Revision:
0:876059873ad6
Child:
1:6249f99332e0

File content as of revision 0:876059873ad6:

#ifndef LM19_Driver_H
#define LM19_Driver_H

#include "mbed.h"

class LM19 {
    
    public:
    LM19(PinName in1); //initialization function
    float c1, c2, c3, c4;
    float temp(); //temperature computation
    
    private:
    AnalogIn _in1;
    
};

#endif