Convert Figma logo to code with AI

DarkFlippers logounleashed-firmware

Flipper Zero Unleashed Firmware

17,259
1,435
17,259
90

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]

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.

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

Welcome to the Flipper Zero Unleashed Firmware repo!

This firmware is a fork from original (OFW) firmware flipperdevices/flipperzero-firmware


Most stable custom firmware focused on new features and improvements of original firmware components, keeping compatibility with original firmware API and Apps


This software is for experimental purposes only and is not meant for any illegal activity/purposes.
We do not condone illegal activity and strongly encourage keeping transmissions to legal/valid uses allowed by law.
Also, this software is made without any support from Flipper Devices and is in no way related to the official team.

FAQ (frequently asked questions)

Follow this link to find answers to most asked questions

Dev builds (unstable) (built automatically from dev branch)

Releases in Telegram

What's changed

  • Sub-GHz lib & 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
    • 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.

Keeloq [Not ALL systems supported for decode or emulation!] - Supported manufacturers list

Encoders or emulation (+ programming mode) support made by @xMasterX:

  • 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

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
QR image
https://patreon.com/mmxdev
Boostypatreon alternative
QR image
https://boosty.to/mmxdev
cloudtipsonly RU payments accepted
QR image
https://pay.cloudtips.ru/p/7b3e9d65
YooMoneyonly RU payments accepted
QR image
https://yoomoney.ru/fundraise/XA49mgQLPA0.221209
USDT(TRC20)
QR image
TSXcitMSnWXUFqiUfEXrTVpVewXy2cYhrs
ETH(BSC/ERC20-Tokens)
QR image
darkflippers.eth (or 0xFebF1bBc8229418FF2408C07AF6Afa49152fEc6a)
BTC
QR image
bc1q0np836jk9jwr4dd7p6qv66d04vamtqkxrecck9
SOL(Solana/Tokens)
QR image
DSgwouAEgu8iP5yr7EHHDqMNYWZxAqXWsTEeqCAXGLj8
DOGE
QR image
D6R6gYgBn5LwTNmPyvAQR6bZ9EtGgFCpvv
LTC
QR image
ltc1q3ex4ejkl0xpx3znwrmth4lyuadr5qgv8tmq8z9
BCH
QR image
qquxfyzntuqufy2dx0hrfr4sndp0tucvky4sw8qyu3
XMR(Monero)
QR image
41xUz92suUu1u5Mu4qkrcs52gtfpu9rnZRdBpCJ244KRHf6xXSvVFevdf2cnjS7RAeYr5hn9MsEfxKoFDRSctFjG5fv1Mhn
TON
QR image
UQCOqcnYkvzOZUV_9bPE_8oTbOrOF03MnF-VcJyjisTZmsxa

Community apps included

🎲 Download Extra plugins for Unleashed

List of Extra pack | List of Base (Default) pack

See full list and sources here: xMasterX/all-the-plugins

Official Flipper Zero Apps Catalog web version or mobile app

Instructions

First look at official docs docs.flipper.net

How to install - versions info: r, ,e...

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. Docs by atmanos ⚠️outdated API

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

Plugins that works with external hardware [GPIO]

- 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



Where I can find IR, Sub-GHz, ... files, DBs, and other stuff?

UberGuidoZ Playground - Large collection of files - Github

Awesome Flipper Zero - Github



Links

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.