refactor: decreased interval and window for scanning BLE

This commit is contained in:
Yurii
2025-10-22 17:22:02 +03:00
parent 0213582464
commit d5691ef8f7
2 changed files with 3 additions and 2 deletions

View File

@@ -584,8 +584,8 @@ protected:
this->pBLEScan->setActiveScan(false);
this->pBLEScan->setDuplicateFilter(false);
this->pBLEScan->setMaxResults(0);
this->pBLEScan->setInterval(100);
this->pBLEScan->setWindow(100);
this->pBLEScan->setInterval(10);
this->pBLEScan->setWindow(10);
Log.sinfoln(FPSTR(L_SENSORS_BLE), F("Scanning initialized"));
}