• Skip to main content
  • Skip to primary sidebar

Homemade Circuit Projects

Get free circuit help 24/7

Circuits for Beginners | Basic Circuits | LED Driver | Hobby Circuits | Transistor Circuits

New-Projects | Privacy Policy | About us | Contact | Disclaimer | Copyright

Home » Car and Motorcycle » 5 Simple Siren Circuits you can Build at Home

5 Simple Siren Circuits you can Build at Home

Last Updated on September 6, 2021 by Swagatam 7 Comments

electricity is dangerous warning message

In this post we learn about a 5 simple siren circuits, using Arduino and also with ordinary components such as transistors and capacitors yet is able to produce an alarm sound at an excruciating level.

The idea was contributed by "Abu-Hafss"

Deeper in the article we also learn to make an advanced Arduino based design with adjustable and customizable tone features.

1) The Design

This simple car siren circuit design explained here uses minimum number components and yet is able to produce an ear piercing alarm sound each time it's switched ON.

The device is normally used as a car reverse horn, although it can used for any other relevant application too, depending upon the user's preference.

In the automobile field this siren is also popularly know as the "Mega Siren" due to the massive decibel level it generates.

The schematic details and other related info of the proposed car siren is presented below,which were furnished by Mr. Abu-Hafss, who is one of the dedicated readers and contributor of this blog.

High Power Car Siren

Circuit Diagram

Car Mega Siren Circuit

PCB Layout

Car Siren Circuit PCB

The following request was also attached with the above files in the email from Mr. Abu-Hafss.

Dear Swagatam Attached,

please find a photo of a car 12V-20W siren which has really ear-piercing sound. I opened it and found a small PCB as attached.

I have interpreted the PCB into schematic as attached. My concern is to use the amplifier section for some other 15-20W application.

Frankly, I do not have practical experience of audio amplifiers. I shall highly appreciate your help in this regard.

Best regards

Abu-Hafss

As per the above request, the amplifier section of the car siren is cheap and powerful (@ 20watts) and possibly could be used as an amplifier module for other applications requiring a cheap but powerful amplifier alternative.

Analyzing the The Design

Studying the given diagram it appears that the stage comprising Q4, Q5 is only responsible for the amplification, the remaining sections are for generating the siren frequency for the Q4, Q5 base.

The stage forms a powerful Darlington transistor amplifier stage with an extremely high gain (in the order of 1000 and more)

Since the amplifier design is too basic, it might not be suitable for generating or handling Hi-fi music or frequencies above 4kHz.

Moreover the transistor in the process could dissipate a significant amount of heat causing the consumption to be higher than the normal Hi-fi amplifiers.

Therefore, although the amplifier incorporated in the above car siren circuit is cheap and simple it cannot be efficiently implemented for producing movie songs and melodies which involve frequencies up to 15kHz. However, it can be effectively used in units such as horns, bells, alarms, security systems etc.

2) Generating Siren Sound with Arduino

The following Arduino based siren sound generator circuit can be used for generating the pitch perfectly imitating a typical siren sound and can be customized to produce many different siren effects simply by making relevant modification in the sketch.

A siren sound, as we all know is a loud noise generated through a device designed for producing this sound either through a mechanical approach or through electronic circuits.

Siren sound generator devices find many useful applications and are used in emergency service vehicles like in police and ambulance vehicles, and also in fire brigades etc.

The discussed configurable siren enables a connected speaker to produce a custom siren sound. Basically there are two types of siren sound generating equipment, viz pneumatic and electronic.

Pneumatic systems employ air pressure forced through an appropriately dimensioned pipe for creating the sound, while electronic equipment are more sophisticated, using loudspeakers or piezo devices for generating the relevant sound at any desired rate and pattern. Electronic sirens are more flexible, customizable and offer more variations and are extremely efficient.

Types of Siren Sound

A Siren sound can be of many different types, a few common types are the police, ambulance, and the fire siren, others could be in the form of mega sirens as used in car horns, some are fast police siren tunes, another type could be ear piercing such as used for neutralizing mobs, a few could be in your cell phone for alerting while a new message is received.

Therefore, the range could be too extensive and the proposed Arduno alarm circuit can be customized as per the users personal wish and preference for achieving the wished siren sound.

Code sketch:

/*
Siren

A configurable siren for Arduino, requires an 8-ohm speaker attached to
pin8 and ground. For high amplification use a transistor driver with pin8

//Copyright (c) 2012 Jeremy Fonte
//This code is released under the MIT license
//https://opensource.org/licenses/MIT
const int pitchLow = 200;
const int pitchHigh = 1000;
int pitchStep = 10;
int currentPitch;
int delayTime;
const int speakerPin = 8;
void setup() {
currentPitch = pitchLow;
delayTime = 10;
}
void loop() {
tone(speakerPin, currentPitch, 10);
currentPitch += pitchStep;
if(currentPitch >= pitchHigh) {
pitchStep = -pitchStep;
}
else if(currentPitch <= pitchLow) {
pitchStep = -pitchStep;
}
delay(delayTime);
}

Arduino Wiring Diagram with Speaker and Supply Input

 Video Demo:

Using a BJT Stage for Greater Amplification

For high amplification, the above set up can be modified as per the folowng connection diagram:

Arduino police siren

Modifying the Code

Upon Testing I fund the siren sound from the Arduino not very pleasant, and had slight distortions. I experimented with the code, and finally made it extremely smooth and pleasant to hear. Here's the improved for you:

//Improved by Swagatam

const int pitchLow = 200;
const int pitchHigh = 1000;
int pitchStep = 10;
int currentPitch;
int delayTime;
const int speakerPin = 8;
void setup() {
currentPitch = pitchLow;
delayTime = 5;
}
void loop() {
tone(speakerPin, currentPitch, 20);
currentPitch += pitchStep;
if(currentPitch >= pitchHigh) {
pitchStep = -pitchStep;
}
else if(currentPitch <= pitchLow) {
pitchStep = -pitchStep;
}
delay(delayTime);
}

You can also play with the const int pitchHigh = 1000;and increase to to 2000 for increasing the siren length, which is relevant to police sirens.

3) Police, Ambulance, Fire Brigade Siren - USA Style

The next siren circuit is a 3-in-1 siren, which will produce 3 distinct tones resembling, police siren, ambulance siren, and fire brigade sirens sound.

These can be selected through a 3 pole switch, and simply by toggling the positions of the switch.

The complete circuit diagram for this 3 in 1 siren circuit is furnished below:

3-in-1 siren circuit, police, ambulance, fire brigade siren tone

4) Siren Using IC 7400

Here's another simple and cheap siren using the IC 7400 that can be used for many different alarm applications.

The circuit basically is configured around two astable multivibrators, N1/N2 and N3/N4. The N1/N2 stage generates a 0.2 Hz square wave signal which is coupled to the N3/N4, which causes an up and down swing of the 0.2 Hz.

The resulting siren output is 2 V peak to peak and can be amplified any suitable amplifier for getting a loud siren sound.

5) Siren Circuit using Unijunction Transistors

The indicated loud siren circuit is made up of a pair of unijunction relaxation oscillators. UJT Q1 is configured to generate low frequency while Q2 is wired to produce audio frequency.

Resistor R3 connects the slow rising voltage over C1, decided by the time constant components C1 and R2, with the audio frequency across C2, established by the time constant of C2 and R4. The combination results an output where the audio frequency created by Q2 increases in pitch due to the application of the slow rising voltage across C1. This is applied through the resistor R3 to the time constant network C2/R4. This generated siren sound due to sharp intensity is able to travel a longer distances away compared to simple continuous siren sounds generated through just one oscillator.

If you want additional amplification you can accomplish it by integrating a couple of transistors in a super-alpha Darlington set up, as indicated in the dotted circuit stage. R4 resistor shown at the center, must be substituted with a 100 ohm 1/4W resistor. Hooked up to some pressure mat (through over C2), this specific UJT siren circuit could form a fantastic baby snatch alarm for strollers.

6) Ship Siren Circuit

This circuit will generate a high pitched sound just like a ship's siren. The design works well using the low power output source for model ships, when the output signal is appropriately amplified through a power amplifier, to produce a loud ship like alarm tone.

The circuit is configured around a multivibrator through the transistors Q1 & Q2, and a low power output stage using the transistor Q3. The indicated speaker is required to have an impedance of around 40 to 80 ohms.

Capacitors C1 and C2 are responsible for the pitch intensity of the siren and with the values shown in the diagram, the pitch of the siren can be approximately around 300Hz.

The Quiescent current of the circuit is quite low and can be ignored. If you wish to have a much more powerful ship siren sound, in that case you can integrate the Q2 collector output with an external amplifier input through a 1µF electrolytic, in series with a 12k resistor.

High Power MOSFET Siren

The next concept shows a simple yet powerful MOSFET based siren circuit.

Tr1 is utilized as a common emitter circuit, with R2 as the collector load and R1 providing base biasing. C3 connects the output of Tr1's collector to Tr2's input (gate terminal). Tr1's base operates in phase with Tr2's collector, and both Tr1 and Tr2 produce an inversion of the signal. As a result, C2 and R3 offer positive feedback, and the circuit's gain is big enough to create powerful oscillation.

The MOSFET shown in the diagram can be replaced with IRF540

The drain terminal of the MOSFET Tr2 receives an approximately squarewave signal, and the device is turned between hard on and hard off states. This causes very large current pulses (about 500 mA peak) to be pushed to the loudspeaker, resulting in a very loud siren tone output. The working frequency is around 1kHz, however it may be adjusted by changing C2 and C3 values. Varying their  values can create an oppositely proportionate change in the oscillating frequency, therefore make sure C2 and C3 have identical vaues.

10 watt Power Siren

This ingenious small design makes use of the most recent developments in semiconductor technology to create a very compact, low-cost, yet extremely powerful alarm-sound generating unit that can be simply integrated into an existing intruder alarm system or equivalent "protection" equipment. The alarm circuit includes a basic alarm-signal generating stage, which is accompanied by a power amplifier stage. The alarm-signal component of the machine is built around a low-cost CMOS integrated circuit that uses almost no "standby" power.

The power amplifier circuit is a true cutting-edge technology, a low-cost MOSFET power FET that uses almost no current while in "standby" mode. As a result, there is no need for a discrete on/off switch, and the device may be left completely linked to a 12 volt battery supply. IC1a and IC1b are wired as slow astable multivibrators, whereas IC1c-IC1d are connected as fast astables. Each of these astables are "gated," meaning they may be switched on and off using PB1.

The ICa-IC1b slow astable's output is applied to control the frequency of the 1C1c-IC1d fast astable, and the fast astable's output is supplied to the external speaker through the Q1 MOSFET power amplifier stage. When PB1 is open, each of the astables and Q1 are inactive, and the circuit draws almost little standby current. D1 and C1 are utilized to guarantee that voltage spikes produced into the battery supply connections through the speaker do not have a detrimental effect on the astable operations. It should be noted that the circuit requires an 8 Ohm speaker rated to handle higher than 10 watts.

You'll also like:

  • 1.  7 Simple Inverter Circuits you can Build at Home
  • 2.  2 Simple Light to Frequency Converter Projects for Transforming Light into Pulses
  • 3.  Simple 50 Watt Power Amplifier Circuit
  • 4.  How to Make a Simple Math Calculator using Arduino
  • 5.  Make this Car Air Ionizer Circuit
  • 6.  Understanding Motorcycle Voltage Regulator Wiring

About Swagatam

I am an electronic engineer (dipIETE ), hobbyist, inventor, schematic/PCB designer, manufacturer. I am also the founder of the website: https://www.homemade-circuits.com/, where I love sharing my innovative circuit ideas and tutorials.
If you have any circuit related query, you may interact through comments, I'll be most happy to help!

Subscribe for the Latest Posts


 

Reader Interactions

Comments

    Your Comments are too Valuable! But please see that they are related to the above article, and are not off-topic! Cancel reply

    Your email address will not be published. Required fields are marked *

  1. Abu-Hafss says

    Hi Swagatam

    I intend to use the amplifier only for horns & alarms made by using 555.

    Please see the attached schematic. Is it correct or do I need to test the values for the resistor and capacitor?

    https://dl.dropboxusercontent.com/u/20969135/Screenshot%202015-08-25%2020.58.55.png

    Reply
    • Swagatam says

      Hi Abu-Hafss,

      It looks OK to me, but a resistor in place of C2 would be more appropriate according to me….the value can be anything between 1K and 10K.

      Reply
  2. Bubai says

    Dear Swagatam Da,
    I constructed the circuit ( image link s14.postimg.org/kgqpm8jpt/siren_circuit.jpg )
    according to the schematic as well as according to the PCB but found no sound in 1.5w 8ohm speaker.

    Please post a circuit similar to the sound heard in youtube in this topic.

    Reply
    • Swagatam says

      Dear Bubai,

      as you can see in the post, the circuit was taken from a working model and produced exactly as is in the original unit….so it should work according to me.

      check all the components and the tracks carefully once again, you might have done something incorrect while assembling.

      the sound clip was recorded from the original piece presented above.

      Reply
  3. Unknown says

    Is that a normal speaker or a piezo buzzer? It seems to me that the speaker is not a magnetic coil speaker. To receive any sound you might have to use a powerful buzzer.

    Reply
    • Swagatam says

      No, it's a loudspeaker, as we have in radios and TVs.

      Reply
  4. Swagatam says

    you will need an inductor in parallel with the piezo wires…..you can wind 1000 turns of 36 SWG enameled copper wire over a ferrite drum for making the inductor

    Reply

Primary Sidebar



Categories

  • 3-Phase Power (15)
  • 324 IC Circuits (19)
  • 4017 IC Circuits (53)
  • 4060 IC Circuits (25)
  • 555 IC Circuits (98)
  • 741 IC Circuits (19)
  • Amplifiers (58)
  • Arduino Engineering Projects (82)
  • Audio Projects (95)
  • Battery Chargers (82)
  • Car and Motorcycle (94)
  • Datasheets (46)
  • Decorative Lighting (Diwali, Christmas) (33)
  • DIY LED Projects (89)
  • Electronic Components (97)
  • Electronic Devices and Circuit Theory (35)
  • Electronics Tutorial (109)
  • Fish Aquarium (5)
  • Free Energy (35)
  • Fun Projects (11)
  • GSM Projects (9)
  • Health Related (18)
  • Heater Controllers (28)
  • Home Electrical Circuits (101)
  • How to Articles (20)
  • Incubator Related (6)
  • Industrial Electronics (28)
  • Infrared (IR) (40)
  • Inverter Circuits (98)
  • Laser Projects (12)
  • LM317/LM338 (21)
  • LM3915 IC (25)
  • Meters and Testers (63)
  • Mini Projects (171)
  • Motor Controller (66)
  • MPPT (7)
  • Oscillator Circuits (24)
  • PIR (Passive Infrared) (8)
  • Power Electronics (33)
  • Power Supply Circuits (74)
  • Radio Circuits (9)
  • Remote Control (47)
  • Security and Alarm (61)
  • Sensors and Detectors (116)
  • SG3525 IC (5)
  • Simple Circuits (74)
  • SMPS (29)
  • Solar Controllers (61)
  • Timer and Delay Relay (54)
  • TL494 IC (5)
  • Transformerless Power Supply (8)
  • Transmitter Circuits (40)
  • Ultrasonic Projects (14)
  • Water Level Controller (45)

Circuit Calculators

  • AWG to Millimeter Converter
  • Battery Back up Time Calculator
  • Capacitance Reactance Calculator
  • IC 555 Astable Calculator
  • IC 555 Monostable Calculator
  • Inductance Calculator
  • LC Resonance Calculator
  • LM317, LM338, LM396 Calculator
  • Ohm’s Law Calculator
  • Phase Angle Phase Shift Calculator
  • Power Factor (PF) Calculator
  • Reactance Calculator
  • Small Signal Transistor(BJT) and Diode Quick Datasheet
  • Transistor Astable Calculator
  • Transistor base Resistor Calculator
  • Voltage Divider Calculator
  • Wire Current Calculator
  • Zener Diode Calculator

Facebook
Twitter
YouTube
Instagram
My Facebook-Page
Quora

© 2022 · Swagatam Innovations

We use cookies on our website to give you the best experience.
Cookie settingsAccept All
Privacy & Cookies Policy

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Please visit the Privacy Policy Page for more info.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
Non-necessary
Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.
SAVE & ACCEPT