#if 0

#pragma once

#include <mbed.h>

namespace SW
{
    class Core;    
}

class WheelEncoder
{
public:
    WheelEncoder(SW::Core &core);
    
    ~WheelEncoder();
    
    void Update(float deltaTime);
    
private:    

    void pulseInRRight();
    
    void pulseInRLeft();

    SW::Core& m_core;
    
    InterruptIn m_intRL;
    
    InterruptIn m_intRR;
    
    Timer m_rrightTimer, m_rleftTimer;
    
    float m_rrDuration, m_rlDuration;
};
#endif //if 0