17 lines
449 B
C
17 lines
449 B
C
/*
|
|
PZEM EDL - PZEM Event Driven Library
|
|
|
|
This code implements communication and data exchange with PZEM004T V3.0 module using MODBUS proto
|
|
and provides an API for energy metrics monitoring and data processing.
|
|
|
|
This file is part of the 'PZEM event-driven library' project.
|
|
|
|
Copyright (C) Emil Muratov, 2021
|
|
GitHub: https://github.com/vortigont/pzem-edl
|
|
*/
|
|
|
|
#include <Arduino.h>
|
|
#include "pzem_edl.hpp"
|
|
|
|
void mycallback(uint8_t id, const RX_msg* m);
|