17 lines
190 B
C++
17 lines
190 B
C++
/// © MiroZ 2024
|
|
|
|
#include <stdint.h>
|
|
#include <esp_log.h>
|
|
|
|
#include <ld2410.h>
|
|
|
|
class LD2410 : public ld2410
|
|
{
|
|
protected:
|
|
bool m_operational = false;
|
|
|
|
public:
|
|
LD2410();
|
|
bool init();
|
|
};
|