The CEE 16A 3P 6H 200-250VAC IP44 is a robust industrial-grade connector designed for reliable power distribution in demanding environments. This connector is part of the IEC 60309 standard (commonly referred to as "Commando" connectors) and is rated for 16A current, 3-phase power, and 200-250VAC applications. Its IP44 rating ensures protection against solid objects larger than 1mm and water splashes, making it suitable for outdoor and industrial use.
Parameter | Specification |
---|---|
Rated Current | 16A |
Rated Voltage | 200-250VAC |
Number of Phases | 3 |
Frequency | 50/60 Hz |
Number of Pins | 6 (including earth and neutral) |
Protection Rating | IP44 |
Operating Temperature | -25°C to +40°C |
Housing Material | High-impact thermoplastic |
Standard Compliance | IEC 60309 |
Pin Number | Pin Name | Description |
---|---|---|
1 | L1 (Phase 1) | First phase of the 3-phase power supply |
2 | L2 (Phase 2) | Second phase of the 3-phase power supply |
3 | L3 (Phase 3) | Third phase of the 3-phase power supply |
4 | N (Neutral) | Neutral connection |
5 | PE (Earth) | Protective earth/ground connection |
6 | Auxiliary Pin | Optional auxiliary connection |
Wiring the Connector:
Connecting to a Power Source:
Powering On:
While the CEE 16A connector is not directly compatible with low-power devices like an Arduino UNO, it can be used to control high-power equipment via a relay module. Below is an example of how to use an Arduino UNO to control a device powered by the CEE connector.
/*
Example: Controlling a device powered by a CEE 16A connector
using an Arduino UNO and a relay module.
Note: Ensure the relay module is rated for the voltage and current
of the connected device. This example assumes a 5V relay module.
*/
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
// Turn the relay on (activates the connected device)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the device on for 5 seconds
// Turn the relay off (deactivates the connected device)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the device off for 5 seconds
}
Warning: Always exercise caution when working with high-voltage equipment. Ensure proper isolation between the Arduino and the high-voltage circuit using an optocoupler-based relay module.
Loose Connections:
Overheating:
Water Ingress:
Corrosion:
By following this documentation, users can safely and effectively utilize the CEE 16A 3P 6H 200-250VAC IP44 connector in their applications.