ThermistorPack.

Dependents:   Pachube_TestProgram ThermistorPack_TestProgram _DearMrJeffMourich StarBoardOrangeExpansion2 ... more

ThermistorMCP9701.h

Committer:
shintamainjp
Date:
2010-09-17
Revision:
0:ac6a05fefa2f
Child:
1:4f84f03b1703

File content as of revision 0:ac6a05fefa2f:

/**
 * Sensor interface driver. (Version 0.0.1)
 *
 * Copyright (C) 2010 Shinichiro Nakamura (CuBeatSystems)
 * http://shinta.main.jp/
 */

#ifndef _THERMISTOR_MCP9701_H_
#define _THERMISTOR_MCP9701_H_

#include <mbed.h>

#include "Thermistor.h"

class ThermistorMCP9701 : public Thermistor {
public:
    explicit ThermistorMCP9701(PinName pin);
    virtual ~ThermistorMCP9701();
    virtual double read();
private:
    AnalogIn analogInput;
};

#endif