v1.0.2.1 Beta
Pre-release
Pre-release
BETA
WIFI
- Wardriving
- WiFi sniffer
- WiFi deauther
- DOS Attack
- Analizer -> Save PCAPS in SD or flash
- Wireshark integration
BLE
- BLE sniffer
- BLE spammer
- BLE spoffing
- BLE trackers scanner (AirTags, Tile, etc)
- Wireshark integration
Zigbee
- Zigbee sniffer
- Zigbee spoofing (Switch End Device)
- Wardriving
- Wireshark integration
Thread
- Thread sniffer
- Thread broadcast
GPS
- GPS tracker
- Wardriving
- Wireshark integration
Matter
- Matter protocol support
- Matter CLI
Tools
- OTA Firmware Update
- GPS
- SD
- I2C Scanner
- UART2
Firmware test
Evaluates the behavior of:
- LEDs
- Buzzer
- Buttons
- SD Card
- Chip model
- GPS
Flash the firmware Beta
b. Windows: Press the Windows key and X to open a menu. Select Device Manager -> Ports (COM & LPT). The Minino port will appear as something like COM3.
Flash the firmware with the following command:
Important
Replace the {PORT} with your path to the board
- Download and unzip
build_files_1.0.3.0.zip
- Open a terminal and navigate to the
build_files
folder - Find the serial port used by the Minino:
a. Linux and Macos: Use the following command to list the current serial ports:ls /dev/tty*
On Linux, the Minino port will appear as something like:ttyACM0
On macOs, it will appear as something liketty.devusmodem1
b. Windows: Press theWindow
key andX
to open a menu. SelectDevice Manager
-> Ports (COM & LPT). The Minino port will appear as something likeCOM3
- Flash the firmware with the following command:
python3 -m esptool --chip esp32c6 -b 460800 --port {PORT} --before default_reset --after hard_reset write_flash --flash_mode dio --flash_size 8MB --flash_freq 80m 0x0 bootloader/bootloader.bin 0x8000 partition_table/partition-table.bin 0x15000 ota_data_initial.bin 0x20000 minino.bin
Flash the test firmware
- Download and unzip
test_build_files.zip
- Open a terminal and navigate to the
build_files
folder - Find the serial port used by the Minino:
a. Linux and Macos: Use the following command to list the current serial ports:ls /dev/tty*
On Linux, the Minino port will appear as something like:ttyACM0
On macOs, it will appear as something liketty.devusmodem1
b. Windows: Press theWindow
key andX
to open a menu. SelectDevice Manager
-> Ports (COM & LPT). The Minino port will appear as something likeCOM3
- Flash the firmware with the following command:
python3 -m esptool --chip esp32c6 --port {PORT} -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 8MB 0x0 bootloader/bootloader.bin 0x10000 minino.bin 0x8000 partition_table/partition-table.bin
What's Changed
- Update README.md by @sabas1080 in #1
Full Changelog: v1.4...v1.0.3.0