Creating your own plugin

Creating your own plugin isn't hard. As long as you import the correct items, everything should work fine.

Keep in mind that all python scripts containing plugins should be saved in ./plugins, and to keep being organized, can be in a folder. Something like this:

./plugins
├───Bluetooth
│       ble.py

├───Debug
│   └───UI
│           ui.py

├───GPIO
│       Logic_Analyzer.py
│       playground.py
│       _pins.py

├───Sub-GHz
│       subGhz.py

├───System
│       utils.py

├─── >>> My Plugin <<<
│       >>> myPlugin.py <<<

├───USB
│       usbPayloads.py
│       usbUtils.py

└───WiFi
        hammer.py
        wifi.py

Last updated