NerfUS mobile node that manages a target for the Nerf gun firing range

Dependencies:   LedController mbed-rtos mbed NerfUSXbee Servomotor TargetManager

Fork of NerfUS by NerfUS

include/TargetHitCalibrateCallback.hpp

Committer:
Maxime Dupuis
Date:
2017-04-12
Revision:
51:6bf268cd1a1b
Parent:
46:853966aab733

File content as of revision 51:6bf268cd1a1b:

#ifndef TARGET_HIT_CALIBRATE_CALLBACK_HPP
#define TARGET_HIT_CALIBRATE_CALLBACK_HPP

#include "NerfusCallbackInterface.hpp"
#include "Calibrator.hpp"

class TargetHitCalibrateCallback : public NerfusCallbackInterface
{
    public:
        TargetHitCalibrateCallback(Calibrator& calibrator);
        virtual void call();
    
    private:
        Calibrator& calibrator;
};

#endif