The PowerSwitch Tail II is an innovative electronic component that allows users to safely control high-voltage AC devices using a low-voltage DC control signal. This component is particularly useful for hobbyists, makers, and professionals who need to integrate AC power control into their projects without the complexities and safety concerns of directly handling AC wiring. Common applications include home automation, industrial controls, and interactive art installations.
Pin Number | Description | Notes |
---|---|---|
1 | AC Neutral (Input) | Connect to AC neutral line |
2 | AC Hot (Input) | Connect to AC hot line |
3 | AC Neutral (Output) | Connect to device's AC neutral |
4 | AC Hot (Output) | Connect to device's AC hot |
5 | DC+ (Control Input) | Connect to DC control signal (+) |
6 | DC- (Control Input) | Connect to DC control signal (-) |
Connect the Control Signal:
Connect the AC Power:
Connect the Device to be Controlled:
// Define the control pin for the PowerSwitch Tail II
const int controlPin = 2;
void setup() {
// Set the control pin as an output
pinMode(controlPin, OUTPUT);
}
void loop() {
// Turn on the connected AC device
digitalWrite(controlPin, HIGH);
delay(5000); // Keep the device on for 5 seconds
// Turn off the connected AC device
digitalWrite(controlPin, LOW);
delay(5000); // Keep the device off for 5 seconds
}
The AC device does not turn on:
Intermittent operation or flickering:
Q: Can I control the PowerSwitch Tail II with a 3.3V control signal? A: Yes, the PowerSwitch Tail II can be activated with a control signal as low as 3V.
Q: Is it safe to handle the PowerSwitch Tail II while it is connected to AC power? A: No, always disconnect the PowerSwitch Tail II from AC power before handling to avoid the risk of electric shock.
Q: Can I use the PowerSwitch Tail II with 240VAC? A: No, the PowerSwitch Tail II is designed for 120VAC. Using it with higher voltages can be dangerous and will damage the unit.
Q: How can I control multiple AC devices with one PowerSwitch Tail II? A: You can control multiple devices if the combined current does not exceed 15A. However, all devices will turn on and off simultaneously. For independent control, use separate PowerSwitch Tail units for each device.