• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

Circuit Ideas for You

Get free circuit ideas online.

  • Home
  • Privacy Policy
  • About
Home » Bluetooth Controlled Police Siren Sound Circuit with Arduino

Bluetooth Controlled Police Siren Sound Circuit with Arduino

Last updated on 4 July 2026 by Admin-Lavi Leave a Comment

Nowadays, Arduino projects are very popular and they controls everything, as they are easy to build and they are useful for learning electronics.

This project demonstrates a Bluetooth-Controlled Police Siren Sound Circuit with Arduino, then the Arduino UNO acts as the main controller, while the Bluetooth module provides wireless control.

Furthermore, with Bluetooth we can control lights and siren from mobile, so, this project is useful for beginners and it is also good for demonstration and learning purpose.

Arduino Code:

char data;

int red1 = 8;
int red2 = 9;
int blue1 = 10;
int blue2 = 11;
int speaker = 6;

void setup()
{
  pinMode(red1, OUTPUT);
  pinMode(red2, OUTPUT);
  pinMode(blue1, OUTPUT);
  pinMode(blue2, OUTPUT);
  pinMode(speaker, OUTPUT);

  Serial.begin(9600);
}

void loop()
{
  if (Serial.available())
  {
    data = Serial.read();
  }

  if (data == '1')
  {
    policeEffect();
  }
  else if (data == '0')
  {
    stopAll();
  }
}

void policeEffect()
{
  digitalWrite(red1, HIGH);
  digitalWrite(red2, HIGH);
  digitalWrite(blue1, LOW);
  digitalWrite(blue2, LOW);
  tone(speaker, 800);
  delay(200);

  digitalWrite(red1, LOW);
  digitalWrite(red2, LOW);
  digitalWrite(blue1, HIGH);
  digitalWrite(blue2, HIGH);
  tone(speaker, 1200);
  delay(200);
}

void stopAll()
{
  digitalWrite(red1, LOW);
  digitalWrite(red2, LOW);
  digitalWrite(blue1, LOW);
  digitalWrite(blue2, LOW);
  noTone(speaker);
}

Circuit Working:

Bluetooth Controlled Police Siren Sound Circuit Diagram with Arduino

Parts List:

ComponentsQuantity
Resistor 220Ω 1/4 watt4
Arduino UNO1
Speaker 0.25 watt 8Ω1
LED 5mm 20mA red color2
LED 5mm 20mA blue color2
Bluetooth Module HC-05 Serial1
Android Device1

First, we power the Arduino, and the Bluetooth module turns ON, then, the mobile phone sends a command, the Bluetooth module receives the signal, and finally it sends the data to the Arduino.

Arduino reads the data and if command is ON then LEDs start blinking, then red and blue LEDs blink alternately and at the same time Arduino generates tone and speaker produces siren sound.

If we send the OFF command, everything stops and thus, the circuit controls the police siren and lights wirelessly.

Formula with Calculation:

Formula for LED Resistor Calculation:

Supply Voltage = 5V
LED Forward Voltage = 2V
LED Current = 20mA (0.02A)

Resistor Value = (Supply Voltage – LED Voltage) / LED Current

Resistor Value = (5 – 2) / 0.02
Resistor Value = 3 / 0.02
Resistor Value = 150 ohm

So, we use a standard 220-ohm resistor because it provides a safe current for the LED.

How to Build:

To build a Bluetooth Controlled Police Siren Sound Circuit with Arduino follow the below steps:

  • First, collect all components as per circuit diagram.
  • Next, Arduino digital pin 8 connects to first red LED using resistor.
  • Then digital pin 9 connects to second red LED using resistor and digital pin 10 connects to first blue LED using resistor.
  • After that, digital pin 11 connects to second blue LED using resistor and digital pin 6 connects to speaker positive.
  • Also, all LEDs, speaker and bluetooth negatives connect to GND.
  • Now HC-05 VCC pin connects to Arduino 5V and HC-05 GND pin connects to Arduino GND.
  • Further, TXD pin connects to Arduino RX pin 0 and RXD pin connects to Arduino TX pin 1.

Note:

Download the Android application from play store:

  • Arduino Bluetooth Controller
  • Bluetooth Terminal
  • Bluetooth Electronics
  • Serial Bluetooth Terminal

Connection:

  • Install the app in Android mobile.
  • Turn ON mobile Bluetooth.
  • Connect Bluetooth to HC-05 module and enter password .
  • Open the app and connect HC-05.
  • Now test the police siren and lights.

Conclusion:

To conclude, this project for Bluetooth Controlled Police Siren Sound Circuit with Arduino is simple and useful, as it explains Arduino, Bluetooth and LED control.

Moreover, it helps beginners understand wireless communication and also it shows how sound and light can work together; therefore, Police Siren and Lights using Arduino is a good learning project.

Filed Under: Arduino Projects, Audio Circuits, Automation Circuits, Hobby Circuits, IoT projects, LED and Lamps

About Admin-Lavi

Lavi is a B.Tech electronics engineer with a passion for designing new electronic circuits. Do you have questions regarding the circuit diagrams presented on this blog? Feel free to comment and solve your queries with quick replies

Previous Post: « 9V Loud Speaker Sound Generator Circuit
Next Post: PIR Sensor Motion Alarm Circuit Transistor and Relay »

Reader Interactions

Leave a Reply Cancel reply

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

Primary Sidebar




Categories

  • 555 Timer Projects (137)
  • Alarm Circuits (81)
  • Amplifier Circuits (94)
  • Arduino Projects (103)
  • Audio Circuits (189)
  • Automation Circuits (150)
  • Automobile Circuits (40)
  • Battery Charger Circuits (88)
  • DIY Projects (435)
  • Free Energy (12)
  • Heater and Temperature Controllers (32)
  • High Voltage (24)
  • Hobby Circuits (241)
  • Indicator Circuits (63)
  • Inverter Circuits (17)
  • IoT projects (12)
  • LDR Circuits (47)
  • LED and Lamps (201)
  • Meters and Testers (44)
  • Mini Projects (390)
  • Motor Controllers (26)
  • Oscillator Circuits (70)
  • Power Supply Circuits (244)
  • Radio Frequency (8)
  • Remote Control Circuits (12)
  • Renewable energy (20)
  • Security and Protection (128)
  • Sensors and Detectors (236)
  • Solar Circuits (31)
  • Timer Circuits (63)
  • Transistor Circuits (178)
  • Transmitter Circuit (19)
  • Tutorials (33)
  • Voltage Regulator (55)
  • Water Level Controller (10)

Recent Posts

  • Low Current Controlled Battery Charger Circuit using LM723 IC
  • 741 Op-Amp Treble Booster Circuit
  • Simple Diode and Transistor Based Audio Limiter Circuit
  • Simple 500mW Speaker Driver Circuit
  • Easy DIY LM386 Audio Amplifier Circuit

Recent Comments

  1. Admin-Lavi on High Voltage Fence Charger Circuit
  2. etere on High Voltage Fence Charger Circuit
  3. Admin-Lavi on High Voltage Fence Charger Circuit
  4. egidio grzinic on High Voltage Fence Charger Circuit
  5. Logic OR Gate Circuit using Transistors - Circuit Ideas for You on Automatic Street Light Circuit using LDR

Copyright © 2026 | New Circuit Ideas