Skip to content

An event-driven library for ESP32 implementing PZEM-004T v3.0 / PZEM-003 / PZEM-017 Modbus-RTU proto

License

Notifications You must be signed in to change notification settings

vortigont/pzem-edl

Repository files navigation

PZEM-EDL - PZEM event-driven library

BUILD | EXAMPLES | CHANGELOG | DOCS | LINKS | PlatformIO CI

This is an ESP32 Arduino/esp-idf library implementing communication interface for PeaceFair PZEM-004Tv3.0/PZEM-003 Energy monitor modules via MODBUS proto.

The main idea is that lib uses FreeRTOS features to implement non-blocking event-driven operation when exchanging messages via serial port. It is written to run multiple PZEM devices simultaneously sharing same uart port(s) without blocking on rx/tx operations and at the same time to keep a strict message exchange ordering to prevent transmit collisions.

Feel free to open a discussion topic on any questions.

Main features

  • meant to run multiple PZEM devices, although works fine with a single device also
  • non-blocking code on PZEM request-reply exchange, UART runs in event-mode, no while() loops or polling on rx-read
  • no loop() hooks, loop blocking, etc... actually no loop-dependend code at all
  • background auto-polling driven by RTOS timers
  • event/callback API for user-code hooks
  • Class objects for managing single device/port instances (see example)
  • PZPool to handle multiple PZEM devices of different types groupped on single/multiple Serial port(s) (see example)
  • pzem_cli - a small sketch to interact with pzem via terminal cli
  • Collector module (see example)
    • collecting TimeSeries of metrics data
    • Averaging for TimeSeries
    • iterated circular buffers
    • PSRAM support
  • DummyPZEM004 - a dummy object that provides some random metrics like a real PZEM004 device

Supported modules

  • PZEM-004Tv3.0 (same as PZEM-014/PZEM-016) AC 10/100 Amps meter
  • PZEM-003 (same as PZEM-017) DC 10/50/100/200/300 Amps meter (not tested)

Reference project

I use this lib for my own poject - ESPEM. It has WebUI to display PZEM data, live charts to plot collected TimeSeries data, JSON export, MQTT publishing.

Limitations

  • ESP32 platform only (Arduino/ESP-IDF compatible)
  • Hardware Serial only (not a problem for esp32, it has 3 of it with pin remapping)

How it works

A classic design for Arduino code work like this:

  1. user code asks the lib "hey, send a message to PZEM and give me the reply"
  2. lib replies - "OK pls, wait right here, I'm sending a message and awaiting responce", than it makes a req message and sends it to PZEM via uart
  3. than lib blocks the whole loop() code and starts listening for uart RX data awaiting PZEM to craft a responce and return back
  4. lib code waits and waits while data slowly, byte by byte, arrives via uart everytime checking if it has enough data to proceed with a message
  5. when there is enough bytes received lib decodes message and returns control to the user code
  6. worst case scenario - PZEM is not responding and the whole code is blocked untill timeout expires
  7. only now user code is able to process the reply and make a new request

An average RTT that takes PZEM to respond is about 70ms. Multiply this sequence by 3 (or more) devices at 1 second poll rate and it will turn into MCU have to spend 20-25% of it's time just sit and waiting for UART TX/RX.

Now with event-driven approach:

  1. user code asks the lib "hey, send a message to PZEM and give me the reply"
  2. lib replies immidiately "hey, this will take too long to wait, go mind your own business, just leave me a hook and I will ping you, once reply received"
  3. then it crafts the packet and places it into the queue with an instruction like "hey, RTOS, pls pipe this data over serial when available and ping me when you got some reply data, I will take a nap meanwhile :)"
  4. user-code: "I know, it's too early, but here is another request for another PZEM..."
  5. lib: "no problem, leave it here, I will send it once uart is free "
  6. than lib sleep waits until an event from uart comes that there is some data received
  7. it retreives data from buffer and pings user-code - "here is your data, pick it up anytime"

DummyPZEM004

A Dummy abstration class that inheritcs PZEM004 but is a fake device stub. It behaves like it has a connection to real PZEM device but responds with a faked random meterings. Could be really handy for prototyping without the need to connect to a real PZEM devices.

History

I needed to run 3 PZEM devices from one MCU for my ESPEM project and found that existing implementations are pretty poor on running multiple pzem devs, have issues with WiFi and blocking code. So deciced to make my own implementation along with learning some new features about RTOS and ESP IDF framework. My sincere regards to the authors of original PZEM libs - olehs and mandulaj. I've been using their libs for a long time and it inspired me to go on with a new design.

License

Library code is available under GNU General Public License v3.0

Links

PZEM-004Tv3.0 datasheet - User manual, datasheet and MODBUS commands specs

olehs - This is were it all started. An arduino lib for the legacy version of PZEM004t device

mandulaj - Jakub's version of the library for newer PZEM-004T-v3.0 devices supporting MODBUS proto

TheHWcave - reverse-engineered schematics and interface software (python)

zbx-sadman / zabbuino - A Zabbix agent firmware for Arduino supporting PZEM meters

PZEM on TASMOTA - Tasmota has it's own embeded support for PZEM

PZEM-017-v1 - lib for the DC version PZEM-017-v1