Convert Figma logo to code with AI

DarkFlippers logounleashed-firmware

Flipper Zero Unleashed Firmware

18,327
1,504
18,327
98

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

  1. Download the latest release from the GitHub repository
  2. Follow the installation instructions in the repository's README
  3. Connect your Flipper Zero device to your computer
  4. Use the provided flashing tool to install the Unleashed firmware
  5. 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 Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

Unleashed Firmware Logo

English Telegram Chat Russian Telegram Chat Ukraine Telegram Chat Discord Server

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:

📦 Releases

Release builds (stable)

Dev builds (unstable)

[!NOTE] Built automatically from dev branch

🆕 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 1Column 2Column 3Column 4Column 5
AlligatorComunelloGSNMagic_4SL_A2-A4
Alligator_S-275Dea_MioGuard_RF-311AMongooseSL_A6-A9/Tomahawk_9010
APS-1100_APS-2550DTM_NeoHarpoonMutanco_MutancodeSL_B6,B9_dop
AprimaticDoorHanIronLogicNICE_MHOUSESommer(fsk476)
BenincaEcoStarJCM_TechNICE_SmiloStilmatic
BFTElmes_PolandKEYNormstahlTeco
Came_SpaceFAAC_RC,XTKingates_Stylo4kPanteraTomahawk_TZ-9030
CenmaxFAAC_SLHKGB/SubaruPantera_CLKTomahawk_Z,X_3-5
Cenmax_St-5FaraonLeopardPantera_XS/JaguarZX-730-750-1055
Cenmax_St-7Genius_BravoMagic_1Partisan_RX
CenturionGibidiMagic_2Reff
MonarchJolly MotorsMagic_3Sheriff

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:

ServiceRemarkQR CodeLink/Wallet
Patreon Patreon
QR image
patreon.com/mmxdev
Boosty Boostypatreon alternative
QR image
boosty.to/mmxdev
Cloudtips CloudTipsonly RU payments accepted
QR image
pay.cloudtips.ru/p/7b3e9d65
YooMoney YooMoneyonly RU payments accepted
QR image
yoomoney.ru/fundraise/XA49mgQLPA0.221209
USDT USDTTRC20
QR image
TSXcitMSnWXUFqiUfEXrTVpVewXy2cYhrs
ETH ETHBSC/ERC20-Tokens
QR image
0xFebF1bBc8229418FF2408C07AF6Afa49152fEc6a
BTC BTC
QR image
bc1q0np836jk9jwr4dd7p6qv66d04vamtqkxrecck9
SOL SOLSolana/Tokens
QR image
DSgwouAEgu8iP5yr7EHHDqMNYWZxAqXWsTEeqCAXGLj8
DOGE DOGE
QR image
D6R6gYgBn5LwTNmPyvAQR6bZ9EtGgFCpvv
LTC LTC
QR image
ltc1q3ex4ejkl0xpx3znwrmth4lyuadr5qgv8tmq8z9
BCH BCH
QR image
qquxfyzntuqufy2dx0hrfr4sndp0tucvky4sw8qyu3
XMR XMRMonero
QR image
41xUz92suUu1u5Mu4qkrcs52gtfpu9rnZRdBpCJ244KRHf6xXSvVFevdf2cnjS7RAeYr5hn9MsEfxKoFDRSctFjG5fv1Mhn
TON TON
QR image
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

Tools Icon Badge Firmware & main Apps feature

SubGhz Icon Badge Sub-GHz

Plugins Icon Badge Plugins

GPIO Icon Badge GPIO - Plugins that works with external hardware

👨‍💻 Firmware & Development

Project structure

  • applications - Applications and services used in firmware
  • assets - Assets used by applications and services
  • furi - Furi Core: OS-level primitives and helpers
  • debug - Debug tool: GDB-plugins, SVD-file and etc
  • documentation - Documentation generation system configs and input files
  • firmware - Firmware source code
  • lib - Our and 3rd party libraries, drivers and etc...
  • site_scons - Build helpers
  • scripts - Supplementary scripts and python libraries home

Also, pay attention to the ReadMe.md files inside those directories.

🔗 Links