

The PZEM 015 is a digital power meter display designed for real-time monitoring of electrical parameters in AC circuits. It measures voltage, current, power, energy, and frequency, making it an essential tool for energy management systems, industrial automation, and home energy monitoring. Its compact design and ease of integration make it suitable for a wide range of applications, including renewable energy systems, power distribution panels, and electrical testing setups.








The PZEM 015 is a versatile and reliable component with the following key specifications:
| Parameter | Specification |
|---|---|
| Voltage Range | 80V - 260V AC |
| Current Range | 0A - 100A (with external current transformer) |
| Power Range | 0W - 22kW |
| Energy Range | 0kWh - 9999kWh |
| Frequency Range | 45Hz - 65Hz |
| Accuracy | ±1% |
| Display Type | LCD with backlight |
| Communication Interface | None (standalone display) |
| Operating Temperature | -10°C to 50°C |
| Dimensions | 79mm x 43mm x 48mm |
The PZEM 015 has a simple wiring interface for connecting to the AC circuit and the external current transformer (CT). Below is the pin configuration:
| Pin Name | Description |
|---|---|
| L (Live) | Connect to the live wire of the AC circuit |
| N (Neutral) | Connect to the neutral wire of the AC circuit |
| CT+ | Connect to the positive terminal of the current transformer |
| CT- | Connect to the negative terminal of the current transformer |
Wiring the Component:
L and N terminals of the PZEM 015 to the live and neutral wires of the AC circuit, respectively.CT+ and CT- terminals. Ensure the CT is clamped around the live wire of the circuit to measure current accurately.Powering the Device:
Reading Measurements:
Although the PZEM 015 is primarily a standalone display, it can be used with an Arduino UNO for advanced monitoring by interfacing with a compatible PZEM module (e.g., PZEM-004T). Below is an example Arduino code snippet for reading data from a PZEM module:
#include <SoftwareSerial.h>
#include <PZEM004Tv30.h>
// Define RX and TX pins for communication with the PZEM module
SoftwareSerial pzemSerial(10, 11); // RX = pin 10, TX = pin 11
PZEM004Tv30 pzem(&pzemSerial);
void setup() {
Serial.begin(9600); // Initialize serial monitor
Serial.println("PZEM Monitoring Started");
}
void loop() {
float voltage = pzem.voltage(); // Read voltage
float current = pzem.current(); // Read current
float power = pzem.power(); // Read power
float energy = pzem.energy(); // Read energy
// Print readings to the serial monitor
Serial.print("Voltage: "); Serial.print(voltage); Serial.println(" V");
Serial.print("Current: "); Serial.print(current); Serial.println(" A");
Serial.print("Power: "); Serial.print(power); Serial.println(" W");
Serial.print("Energy: "); Serial.print(energy); Serial.println(" kWh");
Serial.println("-----------------------------");
delay(1000); // Wait 1 second before the next reading
}
Note: The above code is for a PZEM module with UART communication (e.g., PZEM-004T). The PZEM 015 does not have a communication interface and is used as a standalone display.
No Display or Incorrect Readings:
Current Reading is Zero:
CT+ and CT- terminals. Ensure the CT is clamped around the live wire only.Energy Reading Does Not Reset:
Flickering Display:
Can the PZEM 015 measure DC circuits? No, the PZEM 015 is designed specifically for AC circuits and cannot measure DC parameters.
Is the PZEM 015 compatible with microcontrollers like Arduino? The PZEM 015 is a standalone display and does not have a communication interface. For Arduino integration, consider using a PZEM module with UART or Modbus support.
How do I reset the energy reading? If the PZEM 015 has a reset button, press and hold it for a few seconds to reset the energy reading. Refer to the user manual for detailed instructions.
Can I use the PZEM 015 for three-phase systems? No, the PZEM 015 is designed for single-phase AC systems only. For three-phase systems, use a dedicated three-phase power meter.
By following this documentation, users can effectively utilize the PZEM 015 for accurate and reliable power monitoring in AC circuits.