Six months of design iterations, sourcing headaches, and a broken oscilloscope later — I am pleased to share a hardware module I designed to extend the Flipper ecosystem for RF security research. This write-up covers the motivation, engineering challenges, capabilities, and responsible-disclosure principles behind the project — and a frank look at a vulnerability that is very much alive in the Maldives today. Left: 3D render of final PCB · Right: Altium Designer PCB layout view Why I Built It The trigger was reading the original MouseJack disclosure by Bastille Networks. It made me realize that a class of peripherals most people assume to be harmless — the cheap wireless mouse on your desk — can be weaponized from a car park. I wanted a research platform small enough to carry in a jacket pocket, native to the Flipper Zero ecosystem, and capable of passive scanning, protocol analysis, and controlled lab tests. What I...
When you use microcontrollers and you are out of PIN's to connect some LED's for status or when you want to drive a binary clock with few pins left in microcontroller, there is a way that can solve this issue. Its called charlieplexing and if you know multiplexing you will have some idea of how it works. I will do an example using Arduino for demonstration. Charlieplexing is a method to drive multiple LED's with few pins available in your microcontroller. Here is the formula to calculate how many LEDs can be drive from N number of pins. Number of LED's = No. of PINS available ( No. of PINS available - 1) For example you have only 3 pins left in Arduino and you want to know how many LED's can be drive. Number of LED's = 3(3-1) Number of LED's = 3(2) Number of LED's = 6 So from 3 PINS you can drive 6 LED's. Since arduino have tri-state output (INPUT, HIGH and LOW) its easy to drive the LED's using this method. how leds are connect...