

The 200A Safety E-Power Switch by Hobbywing (Manufacturer Part ID: Safety Switch Anti-Spark) is a high-capacity electronic switch designed to safely control and disconnect electrical power in circuits. With a current rating of 200 amps, this switch is ideal for high-power applications where overload and short-circuit protection are critical. Its anti-spark design ensures safe operation by minimizing electrical arcing during connection and disconnection.








The following table outlines the key technical details of the 200A Safety E-Power Switch:
| Parameter | Value |
|---|---|
| Manufacturer | Hobbywing |
| Part ID | Safety Switch Anti-Spark |
| Rated Current | 200A |
| Peak Current | 300A (for short durations) |
| Operating Voltage Range | 6V - 60V DC |
| Power Consumption | < 1W |
| Dimensions | 60mm x 30mm x 20mm |
| Weight | 50g |
| Operating Temperature | -20°C to 85°C |
| Connector Type | XT90 or similar |
| Anti-Spark Feature | Yes |
The 200A Safety E-Power Switch has a simple interface with the following connections:
| Pin/Connector | Description |
|---|---|
| Input (+) | Positive terminal for power input |
| Input (-) | Negative terminal for power input |
| Output (+) | Positive terminal for power output |
| Output (-) | Negative terminal for power output |
| Control Button | Push-button to toggle the switch ON or OFF |
Wiring the Switch:
Operating the Switch:
Mounting:
While the 200A Safety E-Power Switch is not directly controlled by an Arduino, it can be used in conjunction with an Arduino-based system to manage high-power loads. Below is an example of how to integrate the switch into a circuit with an Arduino:
/*
Example: Using the 200A Safety E-Power Switch with an Arduino UNO
This example demonstrates how to control a high-power load using the switch.
The Arduino controls a relay that toggles the switch's power input.
*/
// Define the relay control pin
const int relayPin = 7;
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off at startup
}
void loop() {
// Turn on the relay to power the switch
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the switch ON for 5 seconds
// Turn off the relay to disconnect the switch
digitalWrite(relayPin, LOW);
delay(5000); // Keep the switch OFF for 5 seconds
}
Note: The relay in this example is used to control the power input to the switch. Ensure the relay is rated for the voltage and current of your application.
Switch Does Not Turn On:
Excessive Heat During Operation:
Sparks During Connection:
Intermittent Power Loss:
Q1: Can this switch be used with AC power?
A1: No, the 200A Safety E-Power Switch is designed for DC power only. Using it with AC power may damage the switch.
Q2: Is the switch waterproof?
A2: No, the switch is not waterproof. Avoid exposing it to water or excessive moisture.
Q3: Can I use this switch for a 24V solar power system?
A3: Yes, the switch supports voltages up to 60V DC, making it suitable for 24V solar systems.
Q4: How do I know if the anti-spark feature is working?
A4: The anti-spark feature minimizes visible sparks during connection. If sparks are noticeable, inspect the switch for damage.
By following this documentation, you can safely and effectively use the 200A Safety E-Power Switch in your high-power applications.