From 30893f21b7088c0c2302cff07117b5461aec746c Mon Sep 17 00:00:00 2001 From: Stefan Kremser Date: Fri, 12 Oct 2018 21:08:07 +0200 Subject: [PATCH] Set default channel to 9 NEIN --- esp8266_deauther/Settings.cpp | 2 +- esp8266_deauther/Settings.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/esp8266_deauther/Settings.cpp b/esp8266_deauther/Settings.cpp index a2226a9..5698731 100644 --- a/esp8266_deauther/Settings.cpp +++ b/esp8266_deauther/Settings.cpp @@ -105,7 +105,7 @@ void Settings::reset() { // AP setSSID("pwned"); setPassword("deauther"); - setChannel(1); + setChannel(9); setHidden(false); setCaptivePortal(true); diff --git a/esp8266_deauther/Settings.h b/esp8266_deauther/Settings.h index 1900585..7026a84 100644 --- a/esp8266_deauther/Settings.h +++ b/esp8266_deauther/Settings.h @@ -119,7 +119,7 @@ class Settings { uint16_t chTime = 384; uint16_t minDeauths = 3; uint8_t forcePackets = 1; - uint8_t channel = 1; + uint8_t channel = 9; uint8_t deauthReason = 1; uint8_t* macSt; uint8_t* macAP;