#ifndef FEATURES_H
#define FEATURES_H

#ifdef HAS_STATUS
  #include "addons/Status.h"
#endif

#if defined(FWD_PIN) && defined(REV_PIN)
  #include "addons/DirectionSwitch.h"
  #define HAS_DIRECTION_SWITCH
#endif

#ifdef MOTOR_LOAD_PIN
  #include "addons/MotorLoad.h"
#endif

#if defined(FWD_PIN) && defined(REV_PIN)
  #include "VFD.h"
  #define HAS_VFD
#endif

#ifdef HAS_STATUS
  #include "addons/Status.h"
#endif


#endif