esp32_BNO08x/tests/BNO08xTestHelper.hpp

13 lines
228 B
C++
Raw Normal View History

2024-11-14 02:21:16 +00:00
#pragma once
#include "stdio.h"
#include "BNO08x.hpp"
class BNO08xTestHelper
{
2024-11-14 09:36:28 +00:00
public:
static void set_test_imu(BNO08x *imu);
static BNO08x* get_test_imu();
private:
static BNO08x *test_imu;
2024-11-14 02:21:16 +00:00
};