From 558e516f7dcdd0b8c7036c3e9821d4ae6f9ebf71 Mon Sep 17 00:00:00 2001 From: Marcel Peterkau Date: Thu, 18 Sep 2025 08:03:10 +0200 Subject: [PATCH] use correct Seed in AP pass Calc script --- Software/codegen/wifiAP_passcalc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Software/codegen/wifiAP_passcalc.py b/Software/codegen/wifiAP_passcalc.py index 38e939a..ef93c4b 100644 --- a/Software/codegen/wifiAP_passcalc.py +++ b/Software/codegen/wifiAP_passcalc.py @@ -11,7 +11,7 @@ def generate_password(seed, chip_id): return hash_str[:32] # Ensure the password is at most 32 characters if __name__ == "__main__": - SEED = "letmelubeyou" + SEED = "ilikekgg" chip_id = input("Enter the Chip ID in hex (e.g., 1A2B3C4D): ").strip() chip_id = chip_id.zfill(8).upper() # Ensure it's 8 characters, upper case