15 lines
251 B
C++
Executable File
15 lines
251 B
C++
Executable File
//
|
|
// Created by gogacoder on 10.03.24.
|
|
//
|
|
|
|
#include "RangingSensor.hpp"
|
|
#include "esp_log.h"
|
|
|
|
RangingSensor::RangingSensor() {}
|
|
|
|
void RangingSensor::startFlight() {}
|
|
|
|
void RangingSensor::tick() {}
|
|
|
|
uint32_t RangingSensor::getDistance() { return 0; }
|