Mike R / Mbed 2 deprecated Pinscape_Controller_V2

Dependencies:   mbed FastIO FastPWM USBDevice

Fork of Pinscape_Controller by Mike R

Plunger/nullSensor.h

Committer:
mjr
Date:
2020-01-23
Revision:
105:6a25bbfae1e4
Parent:
86:e30a1f60f783

File content as of revision 105:6a25bbfae1e4:

// Null plunger sensor
//
// This file defines a class that provides the plunger sensor interface
// that the main program expects, but with no physical sensor underneath.

#ifndef NULLSENSOR_H
#define NULLSENSOR_H

#include "plunger.h"

class PlungerSensorNull: public PlungerSensor
{
public:
    PlungerSensorNull() : PlungerSensor(65535) { }
    
    virtual void init() { }
    virtual bool readRaw(PlungerReading &r) { return false; }
    virtual uint32_t getAvgScanTime() { return 0; }
};

#endif /* NULLSENSOR_H */