Change time interval to scan and update wifi

This commit is contained in:
chenlelin 2021-03-23 16:20:05 +08:00
parent ed2554f532
commit 7203eb1a9e
1 changed files with 1 additions and 1 deletions

View File

@ -536,7 +536,7 @@ void MainWindow::initTimer()
checkWifiListChanged = new QTimer(this);
checkWifiListChanged->setTimerType(Qt::PreciseTimer);
QObject::connect(checkWifiListChanged, SIGNAL(timeout()), this, SLOT(on_checkWifiListChanged()));
checkWifiListChanged->start(7000);
checkWifiListChanged->start(10*1000);
//网线插入时定时执行
wiredCableUpTimer = new QTimer(this);