Devlog #1 — Laying the Foundation
I’ve always wanted a Flipper Zero, but since it’s difficult to purchase in several countries, including mine, I decided to build my own from scratch. Rather than making a direct clone, my goal is to create a similar handheld platform while adding a few extra capabilities along the way.
For the main controller, I’m using an Arduino Uno Q. One of the reasons I chose this board is its unique architecture: it combines an onboard microcontroller with a dedicated CPU, providing significantly more processing capability than a traditional Arduino. On paper, it’s an excellent foundation for a multifunction hacking device.
The biggest challenge, however, is that the board does not expose enough GPIO pins for the peripherals I want to integrate. To work around this limitation, I’m pairing it with an ESP32-S3 Zero, which will act as a coprocessor for handling audio processing and other GPIO-intensive peripherals. Splitting the workload between the two processors should make the system much more scalable as additional features are added.
Another major obstacle has been software compatibility. Most of the existing libraries for hardware modules commonly used in Flipper-style projects were written for older AVR-based Arduino boards or STM32 platforms. They don’t work on the Uno Q without modification.
To get the project moving, I spent most of my time porting and adapting these libraries instead of building application features. My first target was the PN532 NFC module, which required substantial changes before it could compile and function correctly on the new hardware. After working through the compatibility issues, I successfully ported the library and now have the PN532 running reliably on the board.
Although there isn’t much visible progress yet, this compatibility work forms the backbone of the entire project. With the NFC stack now operational, I can finally start integrating the rest of the hardware and begin implementing the higher-level functionality that will turn this into a fully featured handheld hacking device.
Comments 0
No comments yet. Be the first!
Sign in to join the conversation.