mirror of
https://github.com/esphome/esphome.git
synced 2025-03-23 19:18:17 +00:00
47 lines
1.4 KiB
C++
47 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/core/gpio.h"
|
|
#include "esphome/components/sensor/sensor.h"
|
|
|
|
#include <cinttypes>
|
|
|
|
namespace esphome {
|
|
namespace ultrasonic {
|
|
|
|
class UltrasonicSensorComponent : public sensor::Sensor, public PollingComponent {
|
|
public:
|
|
void set_trigger_pin(GPIOPin *trigger_pin) { trigger_pin_ = trigger_pin; }
|
|
void set_echo_pin(InternalGPIOPin *echo_pin) { echo_pin_ = echo_pin; }
|
|
|
|
/// Set the timeout for waiting for the echo in µs.
|
|
void set_timeout_us(uint32_t timeout_us);
|
|
|
|
// ========== INTERNAL METHODS ==========
|
|
// (In most use cases you won't need these)
|
|
/// Set up pins and register interval.
|
|
void setup() override;
|
|
void dump_config() override;
|
|
|
|
void update() override;
|
|
|
|
float get_setup_priority() const override;
|
|
|
|
/// Set the time in µs the trigger pin should be enabled for in µs, defaults to 10µs (for HC-SR04)
|
|
void set_pulse_time_us(uint32_t pulse_time_us);
|
|
|
|
protected:
|
|
/// Helper function to convert the specified echo duration in µs to meters.
|
|
static float us_to_m(uint32_t us);
|
|
/// Helper function to convert the specified distance in meters to the echo duration in µs.
|
|
|
|
GPIOPin *trigger_pin_;
|
|
InternalGPIOPin *echo_pin_;
|
|
ISRInternalGPIOPin echo_isr_;
|
|
uint32_t timeout_us_{}; /// 2 meters.
|
|
uint32_t pulse_time_us_{};
|
|
};
|
|
|
|
} // namespace ultrasonic
|
|
} // namespace esphome
|