กลับไปหน้ารวมไฟล์
make-a-sos-signal-using-led-and-arduino-54a288-en.md

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.

SOS

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).

  1. If you plug a giant LED directly into the Arduino, it will literally explode the processor chip.
  2. The Gatekeeper: You must wire an IRLZ44N N-Channel MOSFET into the circuit.
  3. 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.
  4. 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 for loop: 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.

ข้อมูล Frontmatter ดั้งเดิม

apps:
  - "1x Arduino IDE"
author: "valnaut"
category: "Basic Electronics"
components:
  - "1x 9V Battery Clip"
  - "1x Arduino UNO"
  - "1x Jumper wires (generic)"
  - "1x 9V battery (generic)"
  - "1x Breadboard (generic)"
  - "1x LED (generic)"
  - "1x Resistor 330 ohm"
description: "Hardware hacking the alert! Ditch the standard blink code and build a dedicated, heavy-duty emergency flasher utilizing high-power LED matrices and MOSFET drivers."
difficulty: "Intermediate"
documentationLinks: []
downloadableFiles:
  - "https://projects.arduinocontent.cc/f218ac22-2180-4560-a53b-851bf6c70150.ino"
  - "https://projects.arduinocontent.cc/f218ac22-2180-4560-a53b-851bf6c70150.ino"
encryptedPayload: "U2FsdGVkX19TSll6SBiJaFaBG5zOji+X2br5RYxEczqqsjSmaUDR5b1PLaYlPaoK4lQWnTzoOApxNvjkD5+7WB+yzv54kYUVFwlofCN475Y="
heroImage: "https://cdn.jsdelivr.net/gh/bigboxthailand/arduino-assets@main/images/projects/make-a-sos-signal-using-led-and-arduino-54a288_cover.jpg"
lang: "en"
likes: 0
passwordHash: "00b294de146fb1d37a29f5b20f0be2a4a2c9cd5ff4e6575a487d4bea976de81c"
price: 435
seoDescription: "Learn how to create an S.O.S signal using Morse Code with Arduino Uno, LED, and a Breadboard."
tags:
  - "lights"
  - "security"
  - "communication"
title: "Make a S.O.S signal using LED and Arduino"
tools: []
videoLinks:
  - "https://www.youtube.com/embed/PdSsCOnTU8w"
views: 8137