disable active scanning mode, disable minor id check

This commit is contained in:
technyon
2024-06-16 04:38:47 +02:00
parent 386b8fa9e3
commit 8e2cae05d5
2 changed files with 4 additions and 5 deletions

View File

@@ -32,7 +32,7 @@ void Scanner::initialize(const std::string& deviceName, const bool wantDuplicate
bleScan->setAdvertisedDeviceCallbacks(this, wantDuplicates);
bleScan->setInterval(interval);
bleScan->setWindow(window);
bleScan->setActiveScan(true);
bleScan->setActiveScan(false);
}
void Scanner::update() {