unleashed-firmware VS rfid

Compare unleashed-firmware vs rfid and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
unleashed-firmware rfid
60 17
15,191 2,673
5.6% -
9.9 5.0
3 days ago 27 days ago
C C++
GNU General Public License v3.0 only The Unlicense
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

unleashed-firmware

Posts with mentions or reviews of unleashed-firmware. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-21.
  • Flipper Zero: Multi-Tool Device for Geeks
    9 projects | news.ycombinator.com | 21 Jan 2024
    I got one not too long after the official launch and I've used it a decent amount (granted I am in cybersecurity and have a more real-world use cases then the average person). My favorite use case is the IR remote since phones no longer have IR blasters. It's saved me twice so far in having to buy/find a remote for something.

    One thing people don't realize is that the custom firmware [0] that you can run allows you to receive and transmit on a wide range of frequencies under 1Ghz. Lots of things use that range (garage doors, gates, fan remotes, etc.) and are not very secure. I think that this will be a time looked back on where it's possible to interact with those devices without having to buy a custom PCB transmitter or somewhat expensive and complex SDR.

    [0] https://github.com/DarkFlippers/unleashed-firmware

  • Noob here
    1 project | /r/flipperzero | 18 May 2023
  • Flipper Zero Unleashed Firmware
    1 project | news.ycombinator.com | 14 May 2023
  • Just got my first flipper today
    3 projects | /r/flipperzero | 2 May 2023
  • Replacing a shitty capacitive remote by the FZ1, in a car.
    2 projects | /r/flipperzero | 20 Apr 2023
  • New Unleashed Firmware Release: unlshd-043
    1 project | /r/FlipperZeroDev | 13 Apr 2023
    Check it out at https://github.com/DarkFlippers/unleashed-firmware/releases/tag/unlshd-043
  • Any code samples for interacting with IR?
    1 project | /r/flipperzero | 11 Apr 2023
    Take a look at my IR Scope. It’s pretty simple. There’s an IR worker that handles talking to the sensor on a second “thread”. The worker has send/receive functions. https://github.com/DarkFlippers/unleashed-firmware/blob/dev/applications/external/ir_scope/ir_scope.c
  • Flipper US store restocked.
    1 project | /r/flipperzero | 3 Apr 2023
  • iOS share sheet for 3rd party firmware
    1 project | /r/flipperzero | 27 Mar 2023
    Instructions for 3rd party firmware are to download the zip to files, then share with the Flipper app. I do not see the flipper app in the share sheet, or selectable if I click +. I've rebooted. I've also opened the app and force quit several times. I see I'm connected via the app to the device, so I know connectivity works. I just updated to iOS 16.4 and not tried this prior, so perhaps a 16.4 bug?https://github.com/DarkFlippers/unleashed-firmware/blob/dev/documentation/HowToInstall.md
  • New software.
    1 project | /r/flipperzero | 22 Mar 2023

rfid

Posts with mentions or reviews of rfid. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-28.
  • Multiple RC522's Weird Behaviour
    2 projects | /r/arduino | 28 Nov 2023
    } } ``` I only get an output from the one connected to pins 10 and 9. Why is that? The array order cannot be the problem, since I swapped the two in the code and only the one connected to pins 10 and 9 works. I also tried using 2 variables instead of an array but that didn't help. I'm using the MFRC522 library but I also tried the v2. None work correctly. I would greatly appreciate any help, Thanks, Michael
  • Measure how much time an NFC tag stays on RC522
    1 project | /r/esp32 | 16 Sep 2023
    I'm trying to measure of much time does a specific NFC tag stays on the RC522 reader through an ESP32. I'm using MFRC522.h library to use the RFID module, but I don't know what some functions do as it's not very well documented...
  • How to use that RFID reader without any library? (esp32) I only wanna check if a tag is in range, I don't care that much to UID and that stuff...
    1 project | /r/arduino | 24 May 2023
    Oh man tricky subject to learn if you are a begginer. If you didn't try this library, you should check if it will work for you https://github.com/miguelbalboa/rfid. This guy made it so easy to learn from his code. It would help if you tell us witch board you are useing and what code did you write. But to sum up your dilema. You can't use IRQ pin for the thing you want, that first. Second if you want to write your code to just blink an LED when a card is near, the chip(the rfid chip info from the datasheet) needs to do this: 1. Do a slef-test 2. enabel the correct registers for it to just turn on 3. make the led blink when something is near. The self-test is maybe not needed but it worked for me so i included it in my code. In his library, MFRC522.cpp, you have on line 198 PCD_Init() function there he writes to some registers to enable them
  • RC522 and Transmitter
    2 projects | /r/arduino | 2 May 2023
  • Can a RF TRANSMITTER 433MHZ interfere with RFID MODULE RC522
    1 project | /r/arduino | 2 May 2023
    /* * -------------------------------------------------------------------------------------------------------------------- * Example sketch/program showing how to read data from a PICC to serial. * -------------------------------------------------------------------------------------------------------------------- * This is a MFRC522 library example; for further details and other examples see: https://github.com/miguelbalboa/rfid * * Example sketch/program showing how to read data from a PICC (that is: a RFID Tag or Card) using a MFRC522 based RFID * Reader on the Arduino SPI interface. * * When the Arduino and the MFRC522 module are connected (see the pin layout below), load this sketch into Arduino IDE * then verify/compile and upload it. To see the output: use Tools, Serial Monitor of the IDE (hit Ctrl+Shft+M). When * you present a PICC (that is: a RFID Tag or Card) at reading distance of the MFRC522 Reader/PCD, the serial output * will show the ID/UID, type and any data blocks it can read. Note: you may see "Timeout in communication" messages * when removing the PICC from reading distance too early. * * If your reader supports it, this sketch/program will read all the PICCs presented (that is: multiple tag reading). * So if you stack two or more PICCs on top of each other and present them to the reader, it will first output all * details of the first and then the next PICC. Note that this may take some time as all data blocks are dumped, so * keep the PICCs at reading distance until complete. * * @license Released into the public domain. * * Typical pin layout used: * ----------------------------------------------------------------------------------------- * MFRC522 Arduino Arduino Arduino Arduino Arduino * Reader/PCD Uno/101 Mega Nano v3 Leonardo/Micro Pro Micro * Signal Pin Pin Pin Pin Pin Pin * ----------------------------------------------------------------------------------------- * RST/Reset RST 9 5 D9 RESET/ICSP-5 RST * SPI SS SDA(SS) 10 53 D10 10 10 * SPI MOSI MOSI 11 / ICSP-4 51 D11 ICSP-4 16 * SPI MISO MISO 12 / ICSP-1 50 D12 ICSP-1 14 * SPI SCK SCK 13 / ICSP-3 52 D13 ICSP-3 15 * * More pin layouts for other boards can be found here: https://github.com/miguelbalboa/rfid#pin-layout */
  • Best RFID switches to use for an Arduino?
    1 project | /r/arduino | 26 Apr 2023
    I use this one: HiLetgo RFID Kit with this library: https://github.com/miguelbalboa/rfid
  • Smart Door Lock with BLE / NFC DIY
    1 project | /r/diyelectronics | 20 Mar 2023
    It's easy for experimentation, Arduino/Pi to this library https://github.com/miguelbalboa/rfid and a mfrc522 reader that uses the Mifare 1K standard.
  • Can the RC522 module read LF tags?
    1 project | /r/arduino | 19 Oct 2022
    Is this normal? or is it something wrong with the module or the code, I'm using the code example from this lib https://github.com/miguelbalboa/rfid
  • Arduino MEGA RFID RC522 - Firmware version 0x0 + communication error, please help!
    1 project | /r/arduino | 14 Aug 2022
    * This is a MFRC522 library example; for further details and other examples see: https://github.com/miguelbalboa/rfid
  • Flipper Zero – Portable Multi-Tool Device for Geeks
    6 projects | news.ycombinator.com | 20 Jul 2022
    Well sure, but if you just need one feature (eg. infrared "tv-b-gone"), and you already have an arduino at home, you just need an infrared led.

    https://create.arduino.cc/projecthub/mike-murray2/homemade-t...

    If you want to open garage doors, you just need a cc1101 and an esp8266

    https://github.com/gusgorman402/RFmoggy

    If you want to clone rfid cards, you need one of the cheap readers, an empty card an an arduino

    https://github.com/miguelbalboa/rfid/blob/master/examples/RF...

    Yes, it's ugly, but it's cheap.

What are some alternatives?

When comparing unleashed-firmware and rfid you can also consider the following projects:

Xtreme-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!

RFmoggy - NodeMCU ESP8266 CC1101 Sub1GHz OOK transmitter & brute forcer w/ pre-saved signals (e.g. TouchTunes Jukebox)

Flipper - Playground (and dump) of stuff I make or modify for the Flipper Zero

awesome-flipperzero - 🐬 A collection of awesome resources for the Flipper Zero device.

Flipper-Xtreme - 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! [Moved to: https://github.com/Flipper-XFW/Xtreme-Firmware]

bankomatinfos - Android NFC app for reading some infos from Austrian Bankomat Cards (Maestro banking cards).

flipperzero-firmware-wPlugins - RogueMaster Flipper Zero Firmware

NFC_Shield_DEV - Please use the PN532 library(http://goo.gl/rRQ56V)

flipperzero-firmware - Flipper Zero Firmware

VirtualWire - VirtualWire library for Arduino and other boards

FlipperAmiibo - Made to be used with Flipper just drag the folder into NFC

flipperzero-firmware - Flipper Zero firmware source code