The Tap Switch by ELEGOO is a versatile component designed to allow the selection of different voltage levels in a transformer by tapping into various points of the winding. This functionality is crucial in applications where precise voltage control is necessary. Common use cases include power supplies, voltage regulators, and various types of electrical equipment that require adjustable voltage levels.
Parameter | Value |
---|---|
Manufacturer | ELEGOO |
Voltage Rating | 0-250V AC/DC |
Current Rating | 0-10A |
Power Rating | Up to 2500W |
Contact Resistance | ≤ 50mΩ |
Insulation Resistance | ≥ 100MΩ @ 500V DC |
Operating Temperature | -40°C to +85°C |
Mechanical Life | 10,000 cycles |
Pin Number | Description |
---|---|
1 | Common (COM) |
2 | Tap 1 (T1) |
3 | Tap 2 (T2) |
4 | Tap 3 (T3) |
5 | Tap 4 (T4) |
6 | Tap 5 (T5) |
While the tap switch is not typically used directly with an Arduino UNO, it can be part of a larger circuit controlled by the Arduino. Below is an example of how you might use the Arduino to control a relay that switches between different taps.
/*
Example code to control a relay with Arduino UNO
to switch between different taps of the tap switch.
*/
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Initialize relay as off
}
void loop() {
// Turn on the relay to switch to a different tap
digitalWrite(relayPin, HIGH);
delay(1000); // Wait for 1 second
// Turn off the relay
digitalWrite(relayPin, LOW);
delay(1000); // Wait for 1 second
}
By following this documentation, users can effectively utilize the ELEGOO Tap Switch in their projects, ensuring reliable and efficient voltage control.