Mark Schwarzer / LM19_Driver

LM19_Driver.h

Committer:
markschwarzer
Date:
2020-11-09
Revision:
0:7de985c38ade

File content as of revision 0:7de985c38ade:

#ifndef LM19_Driver_h
#define LM19_Driver_h
#include "mbed.h"

class LM19{
    
    public:
    LM19(PinName in1);
    float c1, c2, c3, c4;
    float temp();
    
    private:
    AnalogIn _in1;
    
    };
#endif