Stufin
Home Quick Cart Profile

6A 250V AC SPST ON-OFF Round Rocker Switch Black

Buy Now on Stufin

Component Name

6A 250V AC SPST ON-OFF Round Rocker Switch Black

Description

The 6A 250V AC SPST ON-OFF Round Rocker Switch Black is a type of electrical switch used to control the flow of alternating current (AC) in various applications, including IoT devices, appliances, and industrial equipment. This switch is designed to provide a safe and reliable way to turn devices on and off, making it an essential component in many modern systems.

Functionality

The 6A 250V AC SPST ON-OFF Round Rocker Switch Black is a Single-Pole Single-Throw (SPST) switch, which means it has two terminals and can be used to control a single circuit. When the switch is in the "ON" position, it connects the two terminals, allowing current to flow through the circuit. When the switch is in the "OFF" position, it breaks the connection between the two terminals, interrupting the current flow.

The switch's primary function is to provide a simple and intuitive way to turn devices on and off. It is commonly used in applications where a simple, binary control mechanism is required, such as

Controlling the power supply to a device or circuit

Turning lights or appliances on and off

Activating or deactivating sensors or actuators

Key Features

  • Ratings: The switch is rated for 6A (amps) of current and 250V AC (volts alternating current), making it suitable for use in a wide range of applications.
  • SPST Configuration: The switch has a single pole and single throw configuration, which means it can be used to control a single circuit.
  • Round Rocker Actuator: The switch features a round rocker actuator that provides a smooth and intuitive switching action.
  • Black Housing: The switch has a black housing that provides a sleek and durable design.
  • Panel Mount: The switch is designed for panel mounting, making it easy to integrate into a variety of devices and enclosures.
  • Easy Installation: The switch has a simple and straightforward installation process, making it easy to integrate into new or existing systems.
  • Reliability: The switch is designed to provide reliable performance and long-term durability, making it suitable for use in demanding applications.

Voltage Rating

250V AC

Current Rating

6A

Switch Type

SPST (Single-Pole Single-Throw)

Actuator Type

Round Rocker

Housing Material

Black Plastic

Mounting Type

Panel Mount

Operating Temperature

-20C to 85C

Storage Temperature

-40C to 100C

Insulation Resistance

100M

Dielectric Strength

2000V

Applications

The 6A 250V AC SPST ON-OFF Round Rocker Switch Black is suitable for use in a wide range of applications, including

IoT devices and sensors

Home appliances and automation systems

Industrial control systems and equipment

Medical devices and equipment

Aerospace and defense systems

Safety and Precautions

When working with the 6A 250V AC SPST ON-OFF Round Rocker Switch Black, it is essential to follow proper safety precautions to avoid electrical shock or injury. Ensure that the switch is installed and used in accordance with the manufacturer's instructions and local electrical codes and regulations. Always turn off the power supply to the circuit before performing any maintenance or repairs.

Pin Configuration

  • Component Documentation: 6A 250V AC SPST ON-OFF Round Rocker Switch Black
  • Overview
  • The 6A 250V AC SPST ON-OFF Round Rocker Switch Black is a single-pole single-throw (SPST) switch designed for use in a wide range of applications, including IoT projects. This switch is rated for 6A at 250V AC and features a compact round rocker design with a black finish.
  • Pin Description
  • The switch has two terminals, labeled as follows:
  • 1. Terminal 1 (T1):
  • Function: Input/Load Connection
  • Description: This terminal is connected to the power source or the input signal.
  • Connection Type: Screw terminal
  • 2. Terminal 2 (T2):
  • Function: Output/Load Connection
  • Description: This terminal is connected to the load or the device being controlled.
  • Connection Type: Screw terminal
  • Connection Structure
  • To connect the switch, follow these steps:
  • Step 1: Connect the Power Source
  • Connect the power source (e.g., AC power or a voltage regulator) to Terminal 1 (T1). Ensure the voltage rating of the power source does not exceed 250V AC.
  • Secure the connection by tightening the screw terminal.
  • Step 2: Connect the Load
  • Connect the load or device being controlled (e.g., a lamp, motor, or relay) to Terminal 2 (T2).
  • Ensure the load is rated for the same voltage and current as the switch (6A at 250V AC).
  • Secure the connection by tightening the screw terminal.
  • Step 3: Verify the Connection
  • Double-check that the connections are secure and meet the switch's ratings.
  • Verify that the switch is turned off before applying power to the circuit.
  • Important Safety Considerations
  • Always follow proper safety guidelines when working with electrical systems.
  • Ensure the switch is installed in a well-ventilated area, away from flammable materials.
  • Avoid exceeding the switch's rated voltage and current to prevent damage or electrical shock.
  • By following these instructions, you can safely and effectively connect the 6A 250V AC SPST ON-OFF Round Rocker Switch Black in your IoT project.

Code Examples

Component Documentation: 6A 250V AC SPST ON-OFF Round Rocker Switch Black
Overview
The 6A 250V AC SPST ON-OFF Round Rocker Switch Black is a single-pole single-throw (SPST) rocker switch designed for controlling AC circuits up to 250V. It features a robust construction, making it suitable for a wide range of applications, including IoT projects, home automation, and industrial control systems.
Pinout
The switch has two terminals:
Terminal 1: Input (connected to the power source)
 Terminal 2: Output (connected to the load)
Technical Specifications
Current Rating: 6A
 Voltage Rating: 250V AC
 Contact Configuration: SPST ON-OFF
 Actuator Type: Rocker
 Color: Black
 Operating Temperature: -20C to 70C
Code Examples
Here are a few code examples demonstrating how to use the 6A 250V AC SPST ON-OFF Round Rocker Switch Black in various contexts:
Example 1: Basic On/Off Control using Arduino
In this example, we'll use the rocker switch to control an LED connected to an Arduino board.
```cpp
const int ledPin = 13;  // choose the pin for the LED
const int switchPin = 2;  // choose the pin for the switch
void setup() {
  pinMode(ledPin, OUTPUT);
  pinMode(switchPin, INPUT);
}
void loop() {
  int switchState = digitalRead(switchPin);
  if (switchState == HIGH) {
    digitalWrite(ledPin, HIGH);  // turn the LED on
  } else {
    digitalWrite(ledPin, LOW);  // turn the LED off
  }
  delay(50);
}
```
Example 2: Home Automation using ESP32 and Wi-Fi
In this example, we'll use the rocker switch to control a lamp connected to an ESP32 board using Wi-Fi.
```cpp
#include <WiFi.h>
const char ssid = "your_wifi_ssid";
const char password = "your_wifi_password";
const char lampUrl = "http://lamp_ip_address/control";
WiFiClient client;
int switchPin = 0;  // choose the pin for the switch
void setup() {
  Serial.begin(115200);
  WiFi.begin(ssid, password);
  while (WiFi.status() != WL_CONNECTED) {
    delay(1000);
    Serial.println("Connecting to WiFi...");
  }
  Serial.println("Connected to WiFi");
}
void loop() {
  int switchState = digitalRead(switchPin);
  if (switchState == HIGH) {
    client.begin(lampUrl);
    client.println("GET /turn_on HTTP/1.1");
    client.println("Host: lamp_ip_address");
    client.println("Connection: close");
    client.println();
  } else {
    client.begin(lampUrl);
    client.println("GET /turn_off HTTP/1.1");
    client.println("Host: lamp_ip_address");
    client.println("Connection: close");
    client.println();
  }
  delay(50);
}
```
These examples demonstrate the basic usage of the 6A 250V AC SPST ON-OFF Round Rocker Switch Black in IoT applications. The switch can be used in various other contexts, such as industrial control systems, robotics, and more.