The Blower Fan (AC220V 370W), manufactured by Shopee, is an electric fan designed to move air or gas efficiently. Operating at 220 volts AC with a power rating of 370 watts, this blower fan is ideal for applications requiring high airflow, such as cooling, ventilation, and air circulation in industrial, commercial, and residential settings. Its robust design ensures reliable performance in demanding environments.
Below are the key technical details and pin configuration for the Blower Fan (AC220V 370W):
Parameter | Specification |
---|---|
Manufacturer | Shopee |
Part ID | Blower Fan (AC220V 370W) |
Operating Voltage | 220V AC |
Power Rating | 370W |
Frequency | 50/60 Hz |
Airflow Capacity | Varies by model (check datasheet) |
Operating Temperature | -10°C to 60°C |
Dimensions | Varies by model |
Weight | Varies by model |
Noise Level | Typically < 70 dB |
The blower fan typically has a simple wiring configuration for AC power input. Below is the description of the wiring:
Pin/Connection | Description |
---|---|
Live (L) | Connects to the live AC mains |
Neutral (N) | Connects to the neutral AC mains |
Ground (G) | Connects to the earth/ground |
Note: Ensure proper grounding to avoid electrical hazards.
Power Connection:
Mounting:
Control Options:
Testing:
While the blower fan operates on AC power and cannot be directly controlled by an Arduino UNO, you can use a relay module to control the fan's on/off state. Below is an example Arduino code to control the fan using a relay:
// Arduino code to control an AC blower fan using a relay module
// Ensure the relay module is rated for 220V AC operation
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
// Turn the fan ON
digitalWrite(relayPin, HIGH); // Activate the relay
delay(5000); // Keep the fan on for 5 seconds
// Turn the fan OFF
digitalWrite(relayPin, LOW); // Deactivate the relay
delay(5000); // Keep the fan off for 5 seconds
}
Note: Use caution when working with high-voltage AC components. Ensure proper isolation between the Arduino and the AC circuit.
Issue | Possible Cause | Solution |
---|---|---|
Fan does not start | No power supply or loose connections | Check power supply and wiring |
Unusual noise or vibration | Misalignment or debris in the fan | Inspect and clean the fan |
Overheating | Blocked airflow or overvoltage | Ensure proper ventilation and voltage |
Fan runs intermittently | Faulty connections or damaged motor | Check wiring and replace motor if needed |
Can I use this fan with a lower voltage supply?
Can I control the fan speed?
Is the fan waterproof?
What maintenance does the fan require?
By following this documentation, you can safely and effectively use the Blower Fan (AC220V 370W) in your projects and applications.