Top Related Projects
Flipper Zero Unleashed Firmware
RogueMaster Flipper Zero Firmware
The Dom amongst the Flipper Zero Firmware. Give your Flipper the power and freedom it is really craving. Let it show you its true form. Dont delay, switch to the one and only true Master today!
flipper zero goodies [intercom_keys][scripts]
See README.md for link to Discord & YouTube. I will use this repository for my Flipper Zero projects & wiki.
Quick Overview
Unleashed-firmware is an open-source firmware project for the Flipper Zero device, a multi-tool hardware device for pentesters and hardware enthusiasts. This firmware aims to extend the capabilities of the Flipper Zero beyond its stock firmware, offering additional features and improvements.
Pros
- Enhanced functionality compared to stock firmware
- Active community development and frequent updates
- Supports a wide range of protocols and applications
- Customizable and extensible
Cons
- May void warranty or potentially damage the device if not installed correctly
- Some features may be considered legally gray or require responsible use
- Steeper learning curve compared to stock firmware
- Potential stability issues with experimental features
Getting Started
- Download the latest release from the GitHub repository
- Follow the installation instructions in the repository's README
- Connect your Flipper Zero device to your computer
- Use the provided flashing tool to install the Unleashed firmware
- Reboot your Flipper Zero and explore the new features
Note: Always ensure you're using the latest version and follow the installation instructions carefully to avoid potential issues.
Competitor Comparisons
Flipper Zero Unleashed Firmware
Pros of unleashed-firmware
- Identical codebase and features
- Same level of community support and updates
- Consistent development and maintenance
Cons of unleashed-firmware
- No unique advantages over the other repository
- Potential confusion for users due to duplicate repositories
- Possible fragmentation of community efforts and contributions
Code Comparison
Both repositories contain identical code, so there are no differences to highlight. Here's a sample from both:
void furi_hal_gpio_init_simple(const GpioPin* gpio, const GpioMode mode) {
furi_assert(gpio);
hal_gpio_init(gpio, mode, GpioPullNo, GpioSpeedLow);
}
Summary
The comparison between unleashed-firmware and unleashed-firmware reveals that they are identical repositories. This situation might be due to a mirroring setup, accidental duplication, or intentional redundancy. Users should be aware that both repositories offer the same features, codebase, and community support. The main consideration would be choosing which one to follow or contribute to, as splitting efforts between identical repositories could potentially lead to fragmentation of the community or confusion among users.
RogueMaster Flipper Zero Firmware
Pros of flipperzero-firmware-wPlugins
- More frequent updates and a larger variety of features
- Includes additional applications and plugins not found in unleashed-firmware
- Offers customization options like custom boot animations and themes
Cons of flipperzero-firmware-wPlugins
- May have less stability due to rapid development and frequent changes
- Potentially higher resource usage due to additional features and plugins
- Some users report occasional compatibility issues with certain Flipper Zero hardware revisions
Code Comparison
unleashed-firmware:
void subghz_scene_receiver_update_statusbar(void* context) {
SubGhz* subghz = context;
FuriString* history_stat_str;
history_stat_str = furi_string_alloc();
if(!subghz_history_get_text_space_left(subghz->txrx->history, history_stat_str)) {
FuriString* frequency_str;
frequency_str = furi_string_alloc();
flipperzero-firmware-wPlugins:
void subghz_scene_receiver_update_statusbar(void* context) {
SubGhz* subghz = context;
FuriString* history_stat_str;
history_stat_str = furi_string_alloc();
if(!subghz_history_get_text_space_left(subghz->txrx->history, history_stat_str)) {
FuriString* frequency_str;
frequency_str = furi_string_alloc();
The code comparison shows similarities in the basic structure and function names, indicating that both projects likely share a common codebase. However, differences may exist in the implementation details and additional features present in flipperzero-firmware-wPlugins.
The Dom amongst the Flipper Zero Firmware. Give your Flipper the power and freedom it is really craving. Let it show you its true form. Dont delay, switch to the one and only true Master today!
Pros of Xtreme-Firmware
- More frequent updates and feature additions
- Enhanced UI customization options
- Broader range of supported protocols and file formats
Cons of Xtreme-Firmware
- Potentially less stable due to rapid development cycle
- May consume more power due to additional features
- Slightly larger firmware size
Code Comparison
Unleashed-Firmware:
void subghz_scene_receiver_update_statusbar(void* context) {
SubGhz* subghz = context;
FuriString* history_stat_str;
history_stat_str = furi_string_alloc();
subghz_view_receiver_get_history_stat_str(subghz->subghz_receiver, history_stat_str);
subghz_view_receiver_add_data_statusbar(
subghz->subghz_receiver, furi_string_get_cstr(history_stat_str));
furi_string_free(history_stat_str);
}
Xtreme-Firmware:
void subghz_scene_receiver_update_statusbar(void* context) {
SubGhz* subghz = context;
FuriString* history_stat_str = furi_string_alloc();
subghz_view_receiver_get_history_stat_str(subghz->subghz_receiver, history_stat_str);
subghz_view_receiver_add_data_statusbar(
subghz->subghz_receiver, furi_string_get_cstr(history_stat_str));
furi_string_free(history_stat_str);
}
The code comparison shows minimal differences in this particular function, indicating that both firmwares share a similar core structure. However, Xtreme-Firmware may have additional features and modifications in other parts of the codebase.
flipper zero goodies [intercom_keys][scripts]
Pros of flipperzero-goodies
- Offers a wider variety of applications and tools for the Flipper Zero
- Includes more experimental and community-contributed projects
- Provides a collection of resources and utilities beyond firmware
Cons of flipperzero-goodies
- Less stable and thoroughly tested than unleashed-firmware
- May lack consistent updates and maintenance across all included projects
- Not a complete firmware solution, requiring additional setup and integration
Code Comparison
unleashed-firmware (main.c):
int32_t flipper_main(void* p) {
furi_hal_power_insomnia_enter();
furi_hal_rtc_init();
furi_hal_interrupt_init();
// ...
}
flipperzero-goodies (example script):
from flipper.app import App
from flipper.ui import Canvas
class MyApp(App):
def on_draw(self, canvas: Canvas):
canvas.draw_str(0, 0, "Hello, Flipper!")
The code comparison shows that unleashed-firmware focuses on low-level system initialization, while flipperzero-goodies often includes higher-level application code and scripts for various Flipper Zero functionalities.
See README.md for link to Discord & YouTube. I will use this repository for my Flipper Zero projects & wiki.
Pros of flipper-zero-tutorials
- Focused on educational content and tutorials for Flipper Zero
- Provides step-by-step guides for beginners
- Includes a variety of example projects and applications
Cons of flipper-zero-tutorials
- Less comprehensive firmware features compared to unleashed-firmware
- May not include the latest Flipper Zero hardware support
- Fewer advanced customization options
Code Comparison
flipper-zero-tutorials:
void example_main(void* p) {
UNUSED(p);
FuriMessageQueue* event_queue = furi_message_queue_alloc(8, sizeof(ExampleEvent));
ExampleState* example_state = example_alloc();
example_state->event_queue = event_queue;
unleashed-firmware:
int32_t flipper_application(void* p) {
UNUSED(p);
FuriMessageQueue* event_queue = furi_message_queue_alloc(8, sizeof(PluginEvent));
PluginState* plugin_state = malloc(sizeof(PluginState));
plugin_state->event_queue = event_queue;
The code comparison shows similarities in structure, but unleashed-firmware uses more generic naming conventions and may offer more advanced features. flipper-zero-tutorials focuses on simplicity and clarity for educational purposes.
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
Flipper Zero Unleashed Firmware
This firmware is a fork of the original (OFW) version of flipperdevices/flipperzero-firmware and represents the most stable custom build, incorporating new features and improvements to the original components while remaining fully compatible with the API and applications of the original firmware.
[!WARNING] This software is intended solely for experimental purposes and is not meant for any illegal activities. We do not condone unlawful behavior and strongly encourage you to use it only within the bounds of the law.
This project is developed independently and is not affiliated with Flipper Devices.
Also be aware, DarkFlippers/unleashed-firmware is the only official page of the project, there is no paid, premium or closed source versions and if someone contacts you and say they are from our team and try to offer something like that - they are scammers, block that users ASAP
ð Usage
Before getting started:
-
Review the Official Documentation: docs.flipper.net
-
Installation Guide & Version Info:
How to install the firmware by following the Installation Guide and check the version information (e
,c
) -
FAQ:
Find answers to common questions in the FAQ
ð¦ Releases
Release builds (stable)
Telegram: t.me/unleashed_fw
-
GitHub Releases
Dev builds (unstable)
[!NOTE] Built automatically from dev branch
- Web site: dev.unleashedflip.com
Telegram: t.me/kotnehleb
ð What's New
SubâGHz Library & HAL
- Regional TX restrictions removed
- Extra Sub-GHz frequencies added
- Frequency range can be extended in settings file (warning: It can damage Flipper's hardware)
- Many rolling code protocols now have the ability to save & send captured signals
- FAAC SLH (Spa) & BFT Mitto (keeloq secure with seed) manual creation
- External CC1101 module support (by quen0n)
SubâGHz Main App
- Save last used settings (by derskythe)
- New frequency analyzer (by ClusterM)
- Press OK in frequency analyzer to use detected frequency in Read modes (by derskythe)
- Long press OK button in Sub-GHz Frequency analyzer to switch to Read menu (by derskythe)
- New option to use timestamps + protocol name when you saving file, instead of random name or timestamp only - Enable in
Radio Settings -> Protocol Names = ON
- Read mode UI improvements (shows time when signal was received) (by @wosk)
- External CC1101 module support (Hardware SPI used)
- External CC1101 module amplifier control (or LED control) support (enabled by default)
- Hold right in received signal list to delete selected signal
- Custom buttons for Keeloq / Alutech AT4N / Nice Flor S / Somfy Telis / Security+ 2.0 / CAME Atomo - now you can use arrow buttons to send signal with different button code
Add manually
menu extended with new protocols- FAAC SLH, BFT Mitto / Somfy Telis / Nice Flor S / CAME Atomo, etc. manual creation with programming new remote into receiver (use button 0xF for BFT Mitto, 0x8 (Prog) on Somfy Telis, (right arrow button for other protocols))
- Debug mode counter increase settings (+1 â +5, +10, default: +1)
- Debug PIN output settings for protocol development
SubâGHz Apps (by Unleashed Team)
- Sub-GHz Bruteforce - static code brute-force plugin
- Time delay (between signals) setting (hold Up in main screen (says Up to Save)) + configure repeats in protocols list by pressing right button on selected protocol
- Load your own file and select bytes you want to bruteforce or use preconfigured options in protocols list
- Sub-GHz Remote - remote control for 5 sub-ghz files | bind one file for each button
- use the built-in constructor or make config file by following this instruction
Infrared (IR)
- Recompiled IR TV Universal Remote for ALL buttons
- Universal remotes for Projectors, Fans, A/Cs and Audio(soundbars, etc.) â Also always updated and verified by our team
- Infrared â
RCA
Protocol- Infrared â External IR modules support (with autodetect by OFW)
NFC/RFID/iButton
- LFRFID and iButton Fuzzer plugins
- Add DEZ 8 display form for EM4100 (by @korden32)
- Extra Mifare Classic keys in system dict
- EMV Protocol + Public data parser (by @Leptopt1los and @wosk)
- NFC
Add manually
â Mifare Classic with custom UID- NFC parsers: Umarsh, Zolotaya Korona, Kazan, Metromoney, Moscow Social Card, Troika (reworked) and many others (by @Leptopt1los and @assasinfil)
Quality of Life & Other Features
- Customizable Flipper name Update! Now can be changed in Settings â Desktop (by @xMasterX and @Willy-JL)
- Text Input UI element â Cursor feature (by @Willy-JL)
- Byte Input Mini editor â Press UP multiple times until the nibble editor appears (by @gid9798)
- Clock on Desktop
Settings -> Desktop -> Show Clock
(by @gid9798)- Battery percentage display with different styles
Settings -> Desktop -> Battery View
- More games in Dummy Mode â click or hold any of arrow buttons
- Lock device with pin (or regular lock if pin not set) by holding UP button on main screen (by an4tur0r)
- BadKB plugin (by Willy-JL, ClaraCrazy, XFW contributors) - (See in Applications â Tools) - (aka BadUSB via Bluetooth)
- BadUSB â Keyboard layouts (by rien > dummy-decoy)
- Custom community plugins and games added + all known working apps can be downloaded in extra pack in every release
- Other small fixes and changes throughout
- See other changes in readme below
Also check the changelog in releases for latest updates!
Current modified and new Sub-GHz protocols list:
Thanks to Official team (to their SubGHz Developer, Skorp) for implementing support (decoder + encoder / or decode only) for these protocols in OFW.
[!NOTE] Not all Keeloq systems are supported for decoding or emulation!
Supported Keeloq manufacturers include
Column 1 Column 2 Column 3 Column 4 Column 5 Alligator Comunello GSN Magic_4 SL_A2-A4 Alligator_S-275 Dea_Mio Guard_RF-311A Mongoose SL_A6-A9/Tomahawk_9010 APS-1100_APS-2550 DTM_Neo Harpoon Mutanco_Mutancode SL_B6,B9_dop Aprimatic DoorHan IronLogic NICE_MHOUSE Sommer(fsk476) Beninca EcoStar JCM_Tech NICE_Smilo Stilmatic BFT Elmes_Poland KEY Normstahl Teco Came_Space FAAC_RC,XT Kingates_Stylo4k Pantera Tomahawk_TZ-9030 Cenmax FAAC_SLH KGB/Subaru Pantera_CLK Tomahawk_Z,X_3-5 Cenmax_St-5 Faraon Leopard Pantera_XS/Jaguar ZX-730-750-1055 Cenmax_St-7 Genius_Bravo Magic_1 Partisan_RX Centurion Gibidi Magic_2 Reff Monarch Jolly Motors Magic_3 Sheriff
Decoders/Encoders or emulation (+ programming mode) support made by @xMasterX
- ReversRB2 / RB2M (static 64 bit) with add manually support
- Marantec24 (static 24 bit) with add manually support
- GangQi (static 34 bit) with button parsing and add manually support (thanks to @mishamyte for captures and testing, thanks @Skorpionm for help)
- Hollarm (static 42 bit) with button parsing and add manually support (thanks to @mishamyte for captures, thanks @Skorpionm for help)
- Hay21 (dynamic 21 bit) with button parsing
- Nero Radio 57bit (+ 56bit support)
- CAME 12bit/24bit encoder fixes (Fixes are now merged in OFW)
- Keeloq: Dea Mio, Genius Bravo, GSN, HCS101, AN-Motors, JCM Tech, MHouse, Nice Smilo, DTM Neo, FAAC RC,XT, Mutancode, Normstahl, Beninca + Allmatic, Stilmatic, CAME Space, Aprimatic (model TR and similar), Centurion Nova (thanks Carlos !), Hormann EcoStar, Novoferm, Sommer, Monarch (thanks @ashphx !), Jolly Motors (thanks @pkooiman !)
Protocols support made by Skorp (original implementation) and @xMasterX (current version)
- CAME Atomo â Update! check out new instructions
- Nice Flor S â How to create new remote - instructions
- FAAC SLH (Spa) â Update!!! (Programming mode!) Check out new instructions
- Keeloq: BFT Mitto â Update! Check out new instructions
- Star Line
- Security+ v1 & v2
Encoders made by @assasinfil and @xMasterX
- Somfy Telis â How to create new remote - instructions
- Somfy Keytis
- KingGates Stylo 4k
- Alutech AT-4N â How to create new remote - instructions
- Nice ON2E (Nice One) â How to create new remote - instructions
â¤ï¸ Please support development of the project
The majority of this project is developed and maintained by me, @xMasterX. Our team is small and the guys are working on this project as much as they can solely based on the enthusiasm they have for this project and the community.
@Leptopt1los
- NFC, RFID, Plugins, and many other things@gid9798
- SubGHz, Plugins, many other things - currently offline :(@assasinfil
- SubGHz protocols, NFC parsers@Svaarich
- UI design and animations@amec0e
- Infrared assets- Community moderators in Telegram, Discord, and Reddit
- And of course our GitHub community. Your PRs are a very important part of this firmware and open-source development.
The amount of work done on this project is huge and we need your support, no matter how large or small. Even if you just say, "Thank you Unleashed firmware developers!" somewhere. Doing so will help us continue our work and will help drive us to make the firmware better every time.
Also, regarding our releases, every build has and always will be free and open-source. There will be no paywall releases or closed-source apps within the firmware. As long as I am working on this project it will never happen.
You can support us by using links or addresses below:
Service | Remark | QR Code | Link/Wallet |
---|---|---|---|
patreon.com/mmxdev | |||
patreon alternative | boosty.to/mmxdev | ||
only RU payments accepted | pay.cloudtips.ru/p/7b3e9d65 | ||
only RU payments accepted | yoomoney.ru/fundraise/XA49mgQLPA0.221209 | ||
TRC20 | TSXcitMSnWXUFqiUfEXrTVpVewXy2cYhrs | ||
BSC/ERC20-Tokens | 0xFebF1bBc8229418FF2408C07AF6Afa49152fEc6a | ||
bc1q0np836jk9jwr4dd7p6qv66d04vamtqkxrecck9 | |||
Solana/Tokens | DSgwouAEgu8iP5yr7EHHDqMNYWZxAqXWsTEeqCAXGLj8 | ||
D6R6gYgBn5LwTNmPyvAQR6bZ9EtGgFCpvv | |||
ltc1q3ex4ejkl0xpx3znwrmth4lyuadr5qgv8tmq8z9 | |||
qquxfyzntuqufy2dx0hrfr4sndp0tucvky4sw8qyu3 | |||
Monero | 41xUz92suUu1u5Mu4qkrcs52gtfpu9rnZRdBpCJ244KRHf6xXSvVFevdf2cnjS7RAeYr5hn9MsEfxKoFDRSctFjG5fv1Mhn | ||
UQCOqcnYkvzOZUV_9bPE_8oTbOrOF03MnF-VcJyjisTZmsxa |
ð± Community Apps
Enhance your Flipper Zero with apps and plugins created by the community:
-
Extra Plugins & Packs:
Check out the latest extra plugins and plugin packs (Extra Pack and Base Pack) on GitHub. -
Source Code & Full List:
Find the complete list and source code at xMasterX/all-the-plugins. -
Official Apps Catalog:
Browse the official Flipper Zero Apps Catalog on the web or via the mobile app.
ð Where I can find IR, Sub-GHz, ... files, DBs, and other stuff?
ð Instructions
Firmware & main Apps feature
- System: How to change Flipper name
- BadUSB: How to add new keyboard layouts
- Infrared: How to make captures to add them into Universal IR remotes
Sub-GHz
- How to use Flipper as new remote (Nice FlorS, BFT Mitto, Somfy Telis, Aprimatic, AN-Motors, etc..)
- External Radio: How to connect CC1101 module
- Transmission is blocked? How to extend Sub-GHz frequency range
- How to add extra Sub-GHz frequencies
Configure Sub-GHz Remote Appâ ï¸ Not recommended, please use embedded configurator
Plugins
- TOTP (Authenticator): config description
- Barcode Generator: How to use
- Multi Converter: How to use
- WAV Player: sample files & how to convert
- Sub-GHz playlist: generator script
GPIO - Plugins that works with external hardware
- Unitemp - Temperature sensors reader: How to use & supported sensors
- [NMEA] GPS: How to use
- i2c Tools How to use
- [NRF24] plugins: How to use
- [WiFi] Scanner: How to use | Web Flasher
- [ESP8266] Deauther: How to use | Web Flasher
- [ESP32] WiFi Marauder: How to use docs by UberGuidoZ | Marauder repo
- [ESP32-CAM] Camera Suite: How to use
- How to Upload
.bin
to ESP32/ESP8266: Windows | FAP "ESP flasher" - [GPIO] SentrySafe plugin: How to use
ð¨âð» Firmware & Development
- Developer Documentation - developer.flipper.net
- How to build | Project-structure
- CLion IDE - How to setup workspace for flipper firmware development by Savely Krasovsky
- "Hello world!" - plugin tutorial English by DroomOne | Russian by Pavel Yakovlev
- How to write your own app.
Project structure
applications
- Applications and services used in firmwareassets
- Assets used by applications and servicesfuri
- Furi Core: OS-level primitives and helpersdebug
- Debug tool: GDB-plugins, SVD-file and etcdocumentation
- Documentation generation system configs and input filesfirmware
- Firmware source codelib
- Our and 3rd party libraries, drivers and etc...site_scons
- Build helpersscripts
- Supplementary scripts and python libraries home
Also, pay attention to the ReadMe.md
files inside those directories.
ð Links
-
Unleashed web page: flipperunleashed.com
-
Unleashed update server, direct .tgz update links for web updater or direct download: unleashedflip.com
-
Official Docs: docs.flipper.net
-
Official Forum: forum.flipperzero.one
-
Update! Developer Documentation developer.flipper.net
Top Related Projects
Flipper Zero Unleashed Firmware
RogueMaster Flipper Zero Firmware
The Dom amongst the Flipper Zero Firmware. Give your Flipper the power and freedom it is really craving. Let it show you its true form. Dont delay, switch to the one and only true Master today!
flipper zero goodies [intercom_keys][scripts]
See README.md for link to Discord & YouTube. I will use this repository for my Flipper Zero projects & wiki.
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot