

The AC Single Phase Motor (Manufacturer: Songle, Part ID: 11) is an electric motor designed to operate on single-phase alternating current (AC). It is widely used in household appliances and small machinery due to its simplicity, reliability, and efficiency. This motor is ideal for applications requiring moderate power and consistent performance, such as fans, pumps, compressors, and washing machines.








Below are the key technical details for the Songle AC Single Phase Motor (Part ID: 11):
| Parameter | Value |
|---|---|
| Manufacturer | Songle |
| Part ID | 11 |
| Operating Voltage | 110V - 240V AC |
| Frequency | 50Hz / 60Hz |
| Power Rating | 50W - 2kW (varies by model) |
| Speed | 750 - 3600 RPM (depending on load) |
| Efficiency | Up to 85% |
| Starting Mechanism | Capacitor Start or Split Phase |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Live (L) | Connects to the live AC supply line. |
| 2 | Neutral (N) | Connects to the neutral AC supply line. |
| 3 | Ground (GND) | Connects to the ground for safety. |
| 4 | Capacitor Lead | Connects to the external capacitor (if required). |
Note: Some models may include additional terminals for speed control or auxiliary windings.
Power Connection:
Capacitor Connection:
Mounting and Alignment:
Load Connection:
Testing:
While AC motors are not directly controlled by microcontrollers like the Arduino UNO, you can use a relay module to switch the motor on and off. Below is an example code snippet:
// Example: Controlling an AC Single Phase Motor with Arduino UNO
// This code uses a relay module to control the motor's power supply.
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn on the motor
delay(5000); // Keep the motor running for 5 seconds
digitalWrite(relayPin, LOW); // Turn off the motor
delay(5000); // Wait for 5 seconds before restarting
}
Warning: Ensure proper isolation between the Arduino and the AC motor circuit. Use an optocoupler-based relay module for safety.
| Issue | Possible Cause | Solution |
|---|---|---|
| Motor does not start | Power supply not connected properly | Check wiring and ensure proper connections. |
| Motor overheats | Overload or poor ventilation | Reduce load or improve ventilation. |
| Motor vibrates excessively | Misalignment or loose mounting | Align the motor shaft and tighten mounts. |
| Motor hums but does not rotate | Faulty capacitor or winding issue | Replace the capacitor or inspect windings. |
Can I use this motor with a variable frequency drive (VFD)?
What type of capacitor should I use?
How do I reverse the motor's direction?
Is this motor suitable for continuous operation?
By following this documentation, you can effectively use and maintain the Songle AC Single Phase Motor (Part ID: 11) for a wide range of applications.