The OMNI AIRCON Outlet is a versatile and reliable electrical component designed to provide a secure connection point for electrical devices to receive power. This outlet is suitable for a wide range of applications, including residential, commercial, and industrial settings. It ensures a stable and safe power supply to connected devices, making it an essential component in any electrical system.
The following table outlines the key technical specifications of the OMNI AIRCON Outlet:
Specification | Value |
---|---|
Manufacturer | OMNI |
Part ID | AIRCON |
Voltage Rating | 250V AC |
Current Rating | 16A |
Power Rating | 4000W |
Frequency | 50/60 Hz |
Operating Temperature | -20°C to 60°C |
Material | High-grade thermoplastic |
Safety Standards | UL Listed, CE Certified |
The OMNI AIRCON Outlet features a standard pin configuration suitable for various plug types. The table below provides detailed descriptions of each pin:
Pin Number | Pin Name | Description |
---|---|---|
1 | L | Live (Hot) - Connects to the live wire |
2 | N | Neutral - Connects to the neutral wire |
3 | E | Earth (Ground) - Connects to the ground wire |
No Power at the Outlet:
Overheating:
Intermittent Power Supply:
Q1: Can the OMNI AIRCON Outlet be used outdoors?
Q2: What type of plugs are compatible with this outlet?
Q3: How do I know if the outlet is properly grounded?
If you are using the OMNI AIRCON Outlet in a project with an Arduino UNO, you might want to control the power supply to a device. Below is an example code to control a relay module connected to the outlet:
// Define the pin for the relay module
const int relayPin = 7;
void setup() {
// Initialize the relay pin as an output
pinMode(relayPin, OUTPUT);
// Start with the relay off
digitalWrite(relayPin, LOW);
}
void loop() {
// Turn the relay on (connects the outlet)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the relay on for 5 seconds
// Turn the relay off (disconnects the outlet)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the relay off for 5 seconds
}
This code will toggle the relay every 5 seconds, effectively controlling the power supply to the device connected to the OMNI AIRCON Outlet.
By following this documentation, users can effectively utilize the OMNI AIRCON Outlet in their electrical systems, ensuring safe and reliable power delivery to their devices.