Markus Kalkbrenner / Mbed 2 deprecated Pinscape_Controller_Extension_Boards

Dependencies:   FastAnalogIn FastIO FastPWM SimpleDMA USBDevice mbed

Fork of Pinscape_Controller by Mike R

nullSensor.h

Committer:
mkalkbrenner
Date:
2015-12-26
Revision:
36:06e37b14c26a
Parent:
17:ab3cec0c8bf4

File content as of revision 36:06e37b14c26a:

// 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.

const int npix = JOYMAX;

class PlungerSensor
{
public:
    PlungerSensor() { }
    
    void init() { }
    int lowResScan() { return 0; }
    bool highResScan(int &pos) { return false; }
    void sendExposureReport(USBJoystick &) { }
};