For those unaware S.O.S stands for "Save Our Ship". In this project I used a Arduino UNO, Breadboard and a Red Led Powered by a 9v Battery. There has also been use of a resistor of 330 Ohms to ensure that no excess electricity is sent to Led and thus preventing it from burning.
To display the signal Morse Code has been used with the help of our communication channel led. The Morse Code for SOS is:
S =...
O = _ _ _
S =...
S.O.S =... _ _ _...
To display the Morse Code we can take the help of a blink duration of led. In this projects I have given dots a delay of 150 milliseconds and Dashes a delay of 500 milliseconds so That our eyes can perceive it easily.
High Power Switching: Emergency LED Matrix
While the basic SOS project uses a tiny 20mA onboard LED, the High Power Emergency Flasher is designed for genuine outdoor visibility. It uses the exact same SOS logic loops but focuses entirely on scaling the electrical amplification from a tiny 5V signal into a blinding 12V stroboscope.
The Logic-Level MOSFET Firewall
An Arduino Uno pin can output a maximum of 40mA. A massive 12V car spotlight or a dense LED matrix draws 5,000mA (5 Amps).
- If you plug a giant LED directly into the Arduino, it will literally explode the processor chip.
- The Gatekeeper: You must wire an IRLZ44N N-Channel MOSFET into the circuit.
- The MOSFET acts as a giant door.
- The Arduino's Pin 13 sends a tiny, safe 5V pulse to the "Gate" pin of the MOSFET.
- The MOSFET swings the "door" open, allowing the massive 12V / 5 Amp power supply from an external car battery to rush through the "Drain/Source" path and into the giant LED array.
- When the SOS logic loop hits
digitalWrite(13, LOW), the MOSFET instantly slams the 12V door shut in nanoseconds.
Real-World Strobe Effects (PWM)
Because the MOSFET switches so fast, you can make the SOS signal look like a police strobe.
- Instead of turning the LED on solidly for a "Dot", the code iterates a rapid
forloop:analogWrite(13, 255); delay(20); analogWrite(13,0); delay(20); - The giant LED array violently strobes 10 times in half a second, ensuring the emergency signal breaks through fog and catches human attention miles away!
Crucial Hardware for Amperage
- Arduino Uno/Nano: The SOS logic generator.
- IRLZ44N Logic Level MOSFET (Do not use a raw IRFZ44N; it requires 10V to fully open. You must use the "L" Logic Level version for safe 5V Arduino switching).
- Massive 12V LED Panel (e.g., COB LED Chip).
- Thick gauge copper wiring to handle the high heat and current draw.