DPDT 6 Pin Toggle Switch ON-OFF-ON (15A 250V)
DPDT 6 Pin Toggle Switch ON-OFF-ON (15A 250V)
The DPDT 6 Pin Toggle Switch ON-OFF-ON (15A 250V) is a double-pole double-throw (DPDT) toggle switch designed for high-power applications. This switch features a compact design with six pins and is rated for 15A at 250V, making it suitable for a wide range of IoT applications, including industrial control systems, automation, and power distribution.
The DPDT 6 Pin Toggle Switch ON-OFF-ON (15A 250V) is a 3-position toggle switch that allows for three distinct states | ON, OFF, and ON. The switch features two poles, each with a common terminal and two switchable terminals. This allows the switch to control two separate circuits or devices simultaneously. |
In the ON position, the switch connects the common terminal to one of the switchable terminals, allowing current to flow through the circuit. In the OFF position, the switch disconnects the common terminal from both switchable terminals, interrupting the circuit. In the second ON position, the switch connects the common terminal to the other switchable terminal, redirecting the current flow.
The DPDT 6 Pin Toggle Switch ON-OFF-ON (15A 250V) has the following pinout | |
Pin 1 | Common Terminal 1 |
Pin 2 | Switchable Terminal 1 |
Pin 3 | Switchable Terminal 2 |
Pin 4 | Common Terminal 2 |
Pin 5 | Switchable Terminal 3 |
Pin 6 | Switchable Terminal 4 |
The switch has a compact design with dimensions of [insert dimensions, e.g., 25mm x 15mm x 10mm].
-20C to 85C
-40C to 125C
5% to 95% RH
UL (Underwriters Laboratories) certified
CE (Conformit Europene) certified
RoHS (Restriction of Hazardous Substances) compliant
REACH (Registration, Evaluation, Authorization, and Restriction of Chemicals) compliant
The DPDT 6 Pin Toggle Switch ON-OFF-ON (15A 250V) is suitable for a wide range of IoT applications, including |
Industrial control systems
Automation
Power distribution
Medical devices
Aerospace and defense systems
Handle the switch with care to avoid mechanical damage or electrical shock.
Ensure proper installation and wiring to prevent electrical hazards.
Avoid exposing the switch to extreme temperatures, humidity, or vibration.
By following proper installation, operation, and maintenance guidelines, the DPDT 6 Pin Toggle Switch ON-OFF-ON (15A 250V) provides reliable and efficient control for high-power applications.
DPDT 6 Pin Toggle Switch ON-OFF-ON (15A 250V) Documentation
Overview
The DPDT 6 Pin Toggle Switch ON-OFF-ON (15A 250V) is a double-pole double-throw (DPDT) toggle switch designed for high-power applications. It features three positions: ON-OFF-ON, allowing for two different circuits to be controlled independently. This switch is rated for 15A at 250V, making it suitable for a wide range of IoT projects.
Pinout
The DPDT 6 Pin Toggle Switch ON-OFF-ON has the following pinout:
| Pin | Function |
| --- | --- |
| 1 | COM1 (Common 1) |
| 2 | NC1 (Normally Closed 1) |
| 3 | NO1 (Normally Open 1) |
| 4 | COM2 (Common 2) |
| 5 | NC2 (Normally Closed 2) |
| 6 | NO2 (Normally Open 2) |
Code Examples
### Example 1: Controlling Two Independent LEDs using an Arduino Board
In this example, we'll use the DPDT 6 Pin Toggle Switch ON-OFF-ON to control two LEDs connected to an Arduino board.
```arduino
const int led1 = 13; // LED 1 connected to digital pin 13
const int led2 = 12; // LED 2 connected to digital pin 12
const int switchPin = 2; // Toggle switch connected to digital pin 2
void setup() {
pinMode(led1, OUTPUT);
pinMode(led2, OUTPUT);
pinMode(switchPin, INPUT);
}
void loop() {
int switchState = digitalRead(switchPin);
if (switchState == HIGH) {
// Switch is in position 1 (ON)
digitalWrite(led1, HIGH);
digitalWrite(led2, LOW);
} else if (switchState == LOW) {
// Switch is in position 2 (ON)
digitalWrite(led1, LOW);
digitalWrite(led2, HIGH);
} else {
// Switch is in position 3 (OFF)
digitalWrite(led1, LOW);
digitalWrite(led2, LOW);
}
delay(10);
}
```
### Example 2: Controlling a Relay Module using a Raspberry Pi
In this example, we'll use the DPDT 6 Pin Toggle Switch ON-OFF-ON to control a relay module connected to a Raspberry Pi.
```python
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
# Set up GPIO pins
switchPin = 17
relayPin = 23
GPIO.setup(switchPin, GPIO.IN)
GPIO.setup(relayPin, GPIO.OUT)
while True:
switchState = GPIO.input(switchPin)
if switchState:
# Switch is in position 1 (ON)
GPIO.output(relayPin, GPIO.HIGH)
elif not switchState:
# Switch is in position 2 (ON)
GPIO.output(relayPin, GPIO.LOW)
else:
# Switch is in position 3 (OFF)
GPIO.output(relayPin, GPIO.LOW)
time.sleep(0.1)
```
Note: Make sure to use a suitable relay module that can handle the voltage and current ratings of your application.
Safety Precautions
Ensure the switch is installed in a well-ventilated area, away from flammable materials.
Use a suitable enclosure to protect the switch from environmental factors and unauthorized access.
Follow proper wiring and safety guidelines when connecting the switch to your IoT project.
By following these examples and guidelines, you can effectively use the DPDT 6 Pin Toggle Switch ON-OFF-ON (15A 250V) in your IoT projects.