SQR117 - 220V AC Square Siren
SQR117 - 220V AC Square Siren
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.
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.
| 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 |
| 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
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.
SQR117 - 220V AC Square Siren DocumentationOverviewThe 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 SpecificationsOperating 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 PlasticPinoutThe 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 BoardIn 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 RequirementsArduino Board (e.g., Arduino Uno)
Relay Module (e.g., SRD-05VDC-SL-C)
SQR117 - 220V AC Square Siren
Breadboard and jumper wiresSoftware
```c
const int relayPin = 2; // Pin connected to relay modulevoid 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 BlynkIn this example, we'll create an IoT-based alarm system using an ESP32 board, the Blynk IoT platform, and the SQR117 siren.Hardware RequirementsESP32 Board (e.g., ESP32 DevKitC)
SQR117 - 220V AC Square Siren
Breadboard and jumper wires
Wi-Fi connectionSoftware
```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 PythonIn this example, we'll use a Raspberry Pi and Python to control the SQR117 siren in an industrial automation setting.Hardware RequirementsRaspberry Pi Board (e.g., Raspberry Pi 4)
SQR117 - 220V AC Square Siren
Breadboard and jumper wiresSoftware
```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.