

The JOYELEC_relè_Contattore automatico CA domestico 220V / 230V 50 / 60Hz (Manufacturer Part ID: ACCT1) is a domestic AC relay contactor designed for reliable and efficient control of electrical devices. Operating at 220V/230V with a frequency of 50/60Hz, this component is ideal for automating the switching of household appliances, lighting systems, and other electrical loads.








The following table outlines the key technical details of the JOYELEC AC relay contactor:
| Parameter | Specification |
|---|---|
| Operating Voltage | 220V / 230V AC |
| Frequency | 50 / 60 Hz |
| Rated Current | 16A |
| Contact Configuration | SPST (Single Pole Single Throw) |
| Coil Power Consumption | ≤ 2W |
| Insulation Resistance | ≥ 100MΩ |
| Operating Temperature | -10°C to +55°C |
| Dimensions | 86mm x 36mm x 65mm |
| Weight | 150g |
The relay contactor has the following pin configuration:
| Pin Number | Label | Description |
|---|---|---|
| 1 | L (Line) | Connect to the live AC input (220V/230V). |
| 2 | N (Neutral) | Connect to the neutral AC input. |
| 3 | NO (Normally Open) | Output terminal for the load; closed when relay is active. |
| 4 | COM (Common) | Common terminal for the load circuit. |
The JOYELEC relay can be controlled using an Arduino UNO. Below is an example circuit and code to toggle the relay:
// Define the pin connected to the relay
const int relayPin = 7;
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn the relay on
delay(5000); // Keep it on for 5 seconds
digitalWrite(relayPin, LOW); // Turn the relay off
delay(5000); // Keep it off for 5 seconds
}
Note: Use a proper relay driver circuit to protect the Arduino from high currents.
Relay Not Activating:
Overheating:
Buzzing Noise:
Load Not Switching:
Q: Can this relay be used with DC loads?
Q: Is the relay suitable for outdoor use?
Q: Can I control the relay directly from an Arduino pin?
Q: What is the maximum load power this relay can handle?
By following this documentation, users can effectively integrate the JOYELEC AC relay contactor into their projects for reliable and efficient operation.