Add flock command and icon

This commit is contained in:
Just Call Me Koko
2025-11-23 07:41:31 -05:00
parent b6d1ce7a37
commit cd3ab51080
7 changed files with 26 additions and 2 deletions

View File

@@ -1022,6 +1022,14 @@ void CommandLine::runCommand(String input) {
#endif
wifi_scan_obj.StartScan(BT_SCAN_FLIPPER, TFT_ORANGE);
}
else if (bt_type == "flock") {
Serial.println("Starting Flock sniff. Stop with " + (String)STOPSCAN_CMD);
#ifdef HAS_SCREEN
display_obj.clearScreen();
menu_function_obj.drawStatusBar();
#endif
wifi_scan_obj.StartScan(BT_SCAN_FLOCK, TFT_ORANGE);
}
}
// General bluetooth sniff
else {