mirror of
https://github.com/esphome/esphome.git
synced 2025-07-30 15:16:37 +00:00
clang-tidy
This commit is contained in:
parent
6609dce695
commit
b977231431
@ -172,7 +172,7 @@ static inline float calculate_angle(float base, float hypotenuse) {
|
|||||||
if (base < 0.0f || hypotenuse <= 0.0f) {
|
if (base < 0.0f || hypotenuse <= 0.0f) {
|
||||||
return 0.0f;
|
return 0.0f;
|
||||||
}
|
}
|
||||||
float angle_radians = std::acosf(base / hypotenuse);
|
float angle_radians = acosf(base / hypotenuse);
|
||||||
float angle_degrees = angle_radians * (180.0f / std::numbers::pi_v<float>);
|
float angle_degrees = angle_radians * (180.0f / std::numbers::pi_v<float>);
|
||||||
return angle_degrees;
|
return angle_degrees;
|
||||||
}
|
}
|
||||||
@ -522,7 +522,7 @@ void LD2450Component::handle_periodic_data_() {
|
|||||||
direction = DIRECTION_STATIONARY;
|
direction = DIRECTION_STATIONARY;
|
||||||
}
|
}
|
||||||
text_sensor::TextSensor *tsd = this->direction_text_sensors_[index];
|
text_sensor::TextSensor *tsd = this->direction_text_sensors_[index];
|
||||||
auto dir_str = find_str(ld2450::DIRECTION_BY_UINT, direction);
|
const auto *dir_str = find_str(ld2450::DIRECTION_BY_UINT, direction);
|
||||||
if (tsd != nullptr && (!tsd->has_state() || tsd->get_state() != dir_str)) {
|
if (tsd != nullptr && (!tsd->has_state() || tsd->get_state() != dir_str)) {
|
||||||
tsd->publish_state(dir_str);
|
tsd->publish_state(dir_str);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user