From dc33ae2d3cbd224028d81f1476f64dd6067d5345 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 7 Jun 2023 14:49:22 -0500 Subject: [PATCH] fix --- components/ratgdo/binary_sensor/ratgdo_binary_sensor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ratgdo/binary_sensor/ratgdo_binary_sensor.h b/components/ratgdo/binary_sensor/ratgdo_binary_sensor.h index 5faf587..41fca86 100644 --- a/components/ratgdo/binary_sensor/ratgdo_binary_sensor.h +++ b/components/ratgdo/binary_sensor/ratgdo_binary_sensor.h @@ -17,7 +17,7 @@ namespace ratgdo { class RATGDOBinarySensor : public binary_sensor::BinarySensor, public RATGDOClient, public Component { public: void dump_config() override; - void set_type(SensorType binary_sensor_type_) { this->binary_sensor_type_ = binary_sensor_type_; } + void set_binary_sensor_type(SensorType binary_sensor_type_) { this->binary_sensor_type_ = binary_sensor_type_; } void on_motion_state(MotionState state) override; void on_obstruction_state(ObstructionState state) override;