Skip to content
This repository has been archived by the owner on Aug 23, 2024. It is now read-only.

Commit

Permalink
Merge pull request #118 from Pwnagotchi-Unofficial/development
Browse files Browse the repository at this point in the history
show AP
  • Loading branch information
dj1ch authored May 23, 2024
2 parents 2f91fab + 7b874c3 commit 3f4c19e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions minigotchi/deauth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -351,9 +351,10 @@ void Deauth::start() {
if (!isinf(pps)) {
Serial.print("(>-<) Packets per second: ");
Serial.print(pps);
Serial.println(" pkt/s");
Serial.print(" pkt/s");
Serial.println(" (AP:" + (String) randomAP.c_str() + ")");
Display::cleanDisplayFace("(>-<)");
Display::attachSmallText("Packets per second: " + (String) pps + " pkt/s");
Display::attachSmallText("Packets per second: " + (String) pps + " pkt/s" + "(AP:" + (String) randomAP.c_str() + ")");
}
} else if (!Deauth::send(deauthFrame, deauthFrameSize, 0) || !Deauth::send(disassociateFrame, disassociateFrameSize, 0)) {
Serial.println("(X-X) Both packets failed to send!");
Expand Down

0 comments on commit 3f4c19e

Please sign in to comment.