2 Commits

Author SHA1 Message Date
442fddfb7f bumped Version before Release 2025-09-18 08:03:15 +02:00
558e516f7d use correct Seed in AP pass Calc script 2025-09-18 08:03:10 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -17,8 +17,8 @@ platform = espressif8266
framework = arduino
board = d1_mini
custom_firmware_version = 1.08
custom_flash_version = 1.08
custom_firmware_version = 1.09
custom_flash_version = 1.09
upload_protocol = esptool
upload_speed = 921600