Alternative Current (AC) is a type of electrical current in which the flow of electric charge periodically reverses direction. This is in contrast to Direct Current (DC), where the flow of electric charge is only in one direction. AC is typically used in large-scale power distribution systems due to its efficiency in transmitting power over long distances. Common applications include household electrical outlets, industrial machinery, and large-scale power grids.
Parameter | Value |
---|---|
Voltage Range | 110V - 240V |
Frequency | 50Hz or 60Hz |
Power Rating | Up to 10,000W (10kW) |
Phase Configuration | Single-phase or Three-phase |
Current Rating | Up to 100A |
For a typical AC plug:
Pin Number | Pin Name | Description |
---|---|---|
1 | Live (L) | Carries the current to the load |
2 | Neutral (N) | Returns the current from the load |
3 | Ground (G) | Safety ground to prevent electric shock |
No Power to Load:
Circuit Breaker Trips:
Electric Shock:
Can I use AC with an Arduino UNO?
What is the difference between single-phase and three-phase AC?
How do I measure AC voltage and current?
If you need to control an AC load using an Arduino UNO, you can use a relay module. Below is an example code to turn an AC load on and off using a relay module connected to pin 7 of the Arduino UNO.
// Define the relay pin
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 (AC load on)
digitalWrite(relayPin, HIGH);
delay(1000); // Wait for 1 second
// Turn the relay off (AC load off)
digitalWrite(relayPin, LOW);
delay(1000); // Wait for 1 second
}
This code will toggle the AC load on and off every second. Ensure that the relay module is rated for the AC voltage and current you are using.
This documentation provides a comprehensive overview of the Alternative Current (AC) - Large component, including its technical specifications, usage instructions, and troubleshooting tips. Whether you are a beginner or an experienced user, this guide will help you safely and effectively use AC in your projects.