Skip to content

Library to connect energy meter PZEM-004T to Arduino/ESP8266 controller through SoftwareSerial

License

Notifications You must be signed in to change notification settings

papconst/PZEM-004T-Arduino-ESP8266-soft-serial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pzem-004t-soft-serial

Library to connect PZEM-004T to Arduino/ESP8266 controller through SoftwareSerial

Many thanks to https://github.com/olehs/PZEM004T

Tested with: Arduino Nano, Pro mini (pins 10,11); ESP-01 (0,2); ESP-12F (0-5 or 12-15);

!NOTE! There is no way to reset saved energy value by software. You can reset it manually by pressing buttonm hold for 5 seconds, release and press again. Serial Port should NOT be used at that moment.

Detailed datasheet could be found here https://forum.arduino.cc/index.php?action=dlattach;topic=480767.0;attach=220845

You can use PZEM-004T emulator sketch from here https://github.com/papconst/PZEM-004T-emulator

Serial communication This module is equipped with TTL serial data communication interface, you can read and set the relevant parameters via the serial port; but if you want to communicate with a device which has USB or RS232 (such as computer), you need to be equipped with different TTL pin board (USB communication needs to be equipped with TTL to USB pin board; RS232 communication needs to be equipped with TTL to RS232 pin board), the specific connection type. In the below table are the communication protocols of this module:

No Function Head Data1- Data5 Sum
1a Voltage Req B0 C0 A8 01 01 00 (Computer sends a request to read the voltage value) 1A
1b Voltage Resp A0 00 E6 02 00 00 (Meter reply the voltage value is 230.2V) 88
2a Current Req B1 C0 A8 01 01 00 (Computer sends a request to read the current value) 1B
2b Current Resp A1 00 11 20 00 00 (Meter reply the current value is 17.32A) D2
3a Active power Req B2 C0 A8 01 01 00 (Computer sends a request to read the active power value) 1C
3b Active power Resp A2 08 98 00 00 00 (Meter reply the active power value is 2200w) 42
4a Read energy Req B3 C0 A8 01 01 00 (Computer sends a request to read the energy value) 1D
4b Read energy Resp A3 01 86 9f 00 00 (Meter reply the energy value is 99999wh) C9
5a Set the module address Req B4 C0 A8 01 01 00 (Computer sends a request to set the address, the address is 192.168.1.1) 1E
5b Set the module address resp A4 00 00 00 00 00 (Meter reply the address was successfully set) A4
6a Set the power alarm threshold Req B5 C0 A8 01 01 14 (computer sends a request to set a power alarm threshold) 33
6b Set the power alarm threshold Resp A5 00 00 00 00 00 (Meter reply the power alarm threshold was successfully set) A5

Illustration of the communication protocol example:

Set the communication address: 192.168.1.1 Send command: B4 C0 A8 01 01 00 1E Reply data: A4 00 00 00 00 00 A4 Note: The above example illustrate that setting the communication address as 192.168.1.1 (the user can set their own address based on their preferences and needs). Sending commands and replying data automatically are as shown above, the data are expressed in hexadecimal; the last byte of the sending and replying data are 1E and A4, belong to cumulative sum. At sending commands: B4 + C0 + A8 + 01 + 01 + 00 = 21E (use the hexadecimal addition), the cumulative sum data is 21E, take the last two bytes 1E to be used the cumulative sum data in sending commands; data in reply: A4 + 00 + 00 + 00 + 00 + 00 = A4 (use the hexadecimal addition),the cumulative sum data is A4,which is the cumulative sum data in reply. The explanation of the cumulative sum is now finished, the following parameter examples are the same as this, there is no explanation any more.

Set the power alarm threshold:20 KW Send command: B5 C0 A8 01 01 14 33 Reply data: A5 00 00 00 00 00 A5 Note: 14 in the sending command is the alarm value (14 is a hexadecimal data representation, which converted to decimal is 20). What you should note is the power alarm value of this module is based on KW units, which means the minimum alarm value is 1KW, the maximum value is 22KW.

Read the current voltage Send command: B0 C0 A8 01 01 00 1A Reply data: A0 00 E6 02 00 00 88 Note: Reply voltage data is D1D2D3 = 00 E6 02, 00 E6 represent the integer-bit of the voltage, 02 represent the decimal of the voltage, the decimal is one digit, converts 00 E6 to decimal is 230; converts 02 to decimal is 2, so the current voltage value is 230.2V.

Read the current current Send command: B1 C0 A8 01 01 00 1B Reply data: A1 00 11 20 00 00 D2 Note: Reply current data is D2D3 = 11 20, 11 represent the integer-bit of the current, 20 represent the decimal of the current, the current decimal is two digits, converts 11 to decimal is 17; converts 20 to decimal is 32, so the current current value is 17.32 A.

Read the current power Send command: B2 C0 A8 01 01 00 1C Reply data: A2 08 98 00 00 00 42 Note: Reply power data is D1D2 = 08 98, converts 08 98 to decimal is 2200, so the current power value is 2200W.

Read the energy Send command: B3 C0 A8 01 01 00 1D Reply data: A3 01 86 9F 00 00 C9 Note: Reply energy data is D1D2D3 = 01 86 9F, converts 01 86 9F to decimal is 99999, so the accumulated power is 99999Wh.

Precautions

  1. This module is suitable for indoor, please do not use outdoor.
  2. Applied load should not exceed the rated power.
  3. Wiring order can't be wrong.

Specification parameters

  1. Working voltage: 80 ~ 260VAC
  2. Test voltage: 80 ~ 260VAC
  3. Rated power: 100A/22000W
  4. Operating frequency: 45-65Hz

About

Library to connect energy meter PZEM-004T to Arduino/ESP8266 controller through SoftwareSerial

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages