Stufin
Home Quick Cart Profile

SQR117 - 220V AC Square Siren

Buy Now on Stufin

Component Name

SQR117 - 220V AC Square Siren

Overview

The SQR117 is a 220V AC square siren, designed for use in various alarm and warning systems. This high-decibel siren is capable of producing a loud, piercing sound to alert individuals of potential threats or hazards, making it an ideal component for industrial, commercial, and residential applications.

Functionality

The SQR117 square siren is designed to operate on a 220V AC power supply and is typically used in conjunction with alarm panels, sensors, and other security devices. When an alarm is triggered, the siren is activated, emitting a loud, high-pitched sound to alert individuals in the surrounding area.

Key Features

  • High-Volume Output: The SQR117 is capable of producing an extremely loud sound, reaching levels of up to 115 dB, making it suitable for large areas and noisy environments.
  • Weather-Resistant Design: The siren's square shape and durable construction provide protection against environmental elements, such as rain, snow, and extreme temperatures, ensuring reliable operation in outdoor and indoor installations.
  • Easy Mounting: The SQR117 features a compact design and comes with mounting holes, making it easy to install on walls, ceilings, or other surfaces.
  • Low Power Consumption: The siren operates on a low power consumption of 20W, reducing energy costs and minimizing its environmental impact.
  • Compatibility: The SQR117 is compatible with a wide range of alarm systems, making it a versatile component for various applications.
  • Certifications: The SQR117 meets stringent international standards, including CE, RoHS, and IP65 certifications, ensuring compliance with safety and environmental regulations.

Specifications

| Parameter | Specification |

| --- | --- |

| Operating Voltage | 220V AC |

| Frequency | 50/60 Hz |

| Power Consumption | 20W |

| Sound Output | 115 dB |

| Operating Temperature | -20C to 50C (-4F to 122F) |

| Dimensions | 120 x 120 x 60 mm (4.7 x 4.7 x 2.4 in) |

| Mounting | Wall or ceiling mountable |

| Certifications | CE, RoHS, IP65 |

| Material | Weather-resistant ABS plastic |

Applications

The SQR117 square siren is suitable for various applications, including

Intruder alarm systems

Fire alarm systems

Industrial warning systems

Commercial security systems

Residential alarm systems

Emergency response systems

Conclusion

The SQR117 - 220V AC square siren is a reliable, high-performance component designed for use in alarm and warning systems. Its high-volume output, weather-resistant design, and low power consumption make it an ideal choice for a wide range of applications.

Pin Configuration

  • SQR117 - 220V AC Square Siren Pinout Explanation
  • The SQR117 - 220V AC Square Siren is a widely used warning device in various IoT applications, including security systems, alarm systems, and industrial control systems. The siren has 4 pins, which are explained below:
  • Pin 1: GND (Ground)
  • Function: Provides a ground connection for the siren
  • Description: This pin connects the siren to the system ground, completing the circuit and allowing the siren to operate
  • Connection: Connect to the system ground or a 0V reference point
  • Pin 2: TRIG (Trigger)
  • Function: Activates the siren when a high signal is applied
  • Description: This pin is used to trigger the siren. When a high signal (typically 5V or 12V) is applied to this pin, the siren will sound
  • Connection: Connect to a digital output pin of a microcontroller or a dedicated trigger signal from a control system
  • Pin 3: NC (No Connection)
  • Function: No internal connection
  • Description: This pin is not connected to any internal circuitry and is reserved for future use
  • Connection: Leave unconnected
  • Pin 4: L (Live)
  • Function: Provides the 220V AC power supply to the siren
  • Description: This pin connects to the 220V AC power supply, powering the siren
  • Connection: Connect to a 220V AC power source, ensuring proper wiring and safety precautions
  • Connection Structure:
  • To connect the SQR117 - 220V AC Square Siren, follow this structure:
  • 1. Connect Pin 1 (GND) to the system ground or a 0V reference point.
  • 2. Connect Pin 2 (TRIG) to a digital output pin of a microcontroller or a dedicated trigger signal from a control system.
  • 3. Leave Pin 3 (NC) unconnected.
  • 4. Connect Pin 4 (L) to a 220V AC power source, ensuring proper wiring and safety precautions.
  • Important Safety Notes:
  • Ensure proper wiring and insulation to avoid electrical shock or short circuits.
  • Use a suitable power supply and follow local safety regulations when working with 220V AC.
  • The siren is designed for indoor use only; avoid exposure to wet or humid environments.
  • By following these guidelines, you can safely and effectively connect the SQR117 - 220V AC Square Siren to your IoT project or system.

Code Examples

SQR117 - 220V AC Square Siren Documentation
Overview
The SQR117 is a 220V AC square siren designed for use in IoT applications, providing a loud and attention-grabbing audible alert. This device can be used in various scenarios, such as intruder alarm systems, fire alarm systems, and industrial automation applications.
Technical Specifications
Operating Voltage: 220V AC
 Frequency: 50/60 Hz
 Sound Pressure Level: 105 dB(A) at 1 meter
 Dimensions: 115 x 115 x 40 mm
 Material: ABS Plastic
Pinout
The SQR117 has two terminals for connecting to a 220V AC power source:
Terminal 1: Live (L)
 Terminal 2: Neutral (N)
Code Examples
### Example 1: Basic On/Off Control using an Arduino Board
In this example, we'll use an Arduino board to control the SQR117 siren. We'll connect the siren to a relay module, which is controlled by the Arduino board.
Hardware Requirements
Arduino Board (e.g., Arduino Uno)
 Relay Module (e.g., SRD-05VDC-SL-C)
 SQR117 - 220V AC Square Siren
 Breadboard and jumper wires
Software
```c
const int relayPin = 2;  // Pin connected to relay module
void setup() {
  pinMode(relayPin, OUTPUT);
}
void loop() {
  // Turn on the siren for 5 seconds
  digitalWrite(relayPin, HIGH);
  delay(5000);
  
  // Turn off the siren
  digitalWrite(relayPin, LOW);
  delay(5000);
}
```
### Example 2: IoT-based Alarm System using ESP32 and Blynk
In this example, we'll create an IoT-based alarm system using an ESP32 board, the Blynk IoT platform, and the SQR117 siren.
Hardware Requirements
ESP32 Board (e.g., ESP32 DevKitC)
 SQR117 - 220V AC Square Siren
 Breadboard and jumper wires
 Wi-Fi connection
Software
```c
#include <WiFi.h>
#include <BlynkSimpleEsp32.h>
// Blynk credentials and Wi-Fi settings
char auth[] = "Your_Auth_Token";
char ssid[] = "Your_WiFi_SSID";
char pass[] = "Your_WiFi_Password";
BlynkTimer timer;
void setup() {
  // Initialize Blynk and Wi-Fi
  Blynk.begin(auth, ssid, pass);
  
  // Connect the siren to a digital pin on the ESP32 board
  pinMode(21, OUTPUT);
}
void loop() {
  Blynk.run();
  timer.run();
  
  // Define a Blynk virtual pin for the alarm trigger
  BLYNK_WRITE(V0) {
    if (param.asInt() == 1) {
      // Sound the siren when the alarm is triggered
      digitalWrite(21, HIGH);
      delay(5000);
      digitalWrite(21, LOW);
    }
  }
}
```
### Example 3: Industrial Automation using a Raspberry Pi and Python
In this example, we'll use a Raspberry Pi and Python to control the SQR117 siren in an industrial automation setting.
Hardware Requirements
Raspberry Pi Board (e.g., Raspberry Pi 4)
 SQR117 - 220V AC Square Siren
 Breadboard and jumper wires
Software
```python
import RPi.GPIO as GPIO
import time
# Set up GPIO mode
GPIO.setmode(GPIO.BCM)
# Define the GPIO pin connected to the siren
siren_pin = 17
# Set up the GPIO pin as an output
GPIO.setup(siren_pin, GPIO.OUT)
def sound_siren():
    # Turn on the siren for 5 seconds
    GPIO.output(siren_pin, GPIO.HIGH)
    time.sleep(5)
    # Turn off the siren
    GPIO.output(siren_pin, GPIO.LOW)
# Call the sound_siren function when needed
sound_siren()
```
These examples demonstrate the basic usage of the SQR117 - 220V AC Square Siren in various IoT applications.