#ifndef ASH_ACCELEROMETER_ACCELEROMETER_CONSTANTS_H_
#define ASH_ACCELEROMETER_ACCELEROMETER_CONSTANTS_H_
#include <array>
#include "ash/accelerometer/accelerometer_types.h"
namespace ash {
inline constexpr std::array<const char[8], 3> kAccelerometerChannels = {
"accel_x", "accel_y", "accel_z"};
inline constexpr std::array<const char[10], 3> kGyroscopeChannels = {
"anglvel_x", "anglvel_y", "anglvel_z"};
constexpr uint32_t kNumberOfAxes = 3u;
const char kLocationStrings[ACCELEROMETER_SOURCE_COUNT][5] = {"lid", "base"};
}
#endif