Program for the water play project for the course Software Testing Practical 2016 given at the VU University

Dependencies:   mbed DRV88255 TextLCD Ping mbed-rtos

ProximityController.h

Committer:
sbouber1
Date:
2016-06-24
Revision:
80:38e274c4dafa
Parent:
66:133398875949

File content as of revision 80:38e274c4dafa:

#ifndef __PROXIMITYCONTROLLER_H__
#define __PROXIMITYCONTROLLER_H__

#include "stdio.h"
#include "Ping.h"
#include "mbed.h"
#include "SensorController.h"
#include "settings.h"

class ProximityController : public SensorController {
    public:
        ProximityController(bool threaded, int interval_ms) : SensorController(threaded, interval_ms) {printf("Initiate Proximity Controller\r\n");}
        
        virtual void update();
        
        virtual float getValue();
        
        float getDistance();
        
        virtual std::string getName();
        
        virtual void setLed(bool);
        
    private:
        float distance;
        float volume;
};
        

#endif