yet another 18B20 Temperature sensor. variable number of sensors working in parasite mode, serial 16x2 display with diagnostic output and post to a rest web service

Dependencies:   EthernetInterface HTTPClient NTPClient mbed-rtos mbed

switch_sensor.h

Committer:
wkinkeldei
Date:
2013-01-03
Revision:
1:9e88b2508768

File content as of revision 1:9e88b2508768:

#ifndef SWITCH_SENSOR_H
#define SWITCH_SENSOR_H

#include "sensor.h"

class SwitchSensor : public Sensor {
public:
    SwitchSensor(PinName pin, char *url_part, char *name);

    virtual void measure(void);
    virtual char *last_measure(void);

protected:
    DigitalIn input;
    char buffer[5];
};

#endif