This commit is contained in:
J. Nick Koston 2025-07-24 21:00:53 -10:00
parent bd20d8b7b2
commit abcf62339d
No known key found for this signature in database
3 changed files with 0 additions and 5 deletions

View File

@ -78,8 +78,6 @@ void AHT10Component::setup() {
this->mark_failed(); this->mark_failed();
return; return;
} }
ESP_LOGV(TAG, "Initialization complete");
} }
void AHT10Component::restart_read_() { void AHT10Component::restart_read_() {

View File

@ -90,7 +90,6 @@ void MR24HPC1Component::setup() {
memset(this->sg_frame_buf_, 0, FRAME_BUF_MAX_SIZE); memset(this->sg_frame_buf_, 0, FRAME_BUF_MAX_SIZE);
this->set_interval(8000, [this]() { this->update_(); }); this->set_interval(8000, [this]() { this->update_(); });
ESP_LOGCONFIG(TAG, "Set up MR24HPC1 complete");
} }
// Timed polling of radar data // Timed polling of radar data

View File

@ -42,8 +42,6 @@ void MR60FDA2Component::setup() {
memset(this->current_frame_buf_, 0, FRAME_BUF_MAX_SIZE); memset(this->current_frame_buf_, 0, FRAME_BUF_MAX_SIZE);
memset(this->current_data_buf_, 0, DATA_BUF_MAX_SIZE); memset(this->current_data_buf_, 0, DATA_BUF_MAX_SIZE);
ESP_LOGCONFIG(TAG, "Set up MR60FDA2 complete");
} }
// main loop // main loop