/**
 * @file Fusion.h
 * @author Seb Madgwick
 * @brief Main header file for the Fusion library. This is the only file that
 * needs to be included when using the library.
 */

#ifndef FUSION_H
#define FUSION_H

//------------------------------------------------------------------------------
// Includes

#include "FusionAhrs.h"
#include "FusionAxes.h"
#include "FusionCalibration.h"
#include "FusionCompass.h"
#include "FusionConvention.h"
#include "FusionMath.h"
#include "FusionOffset.h"

#endif
//------------------------------------------------------------------------------
// End of file
